This repository has been archived on 2024-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
knut.in/Dockerfile
Knut Ahlers 0384362158
Use alpine based nginx container
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2019-07-15 22:53:09 +02:00

6 lines
98 B
Docker

FROM nginx:alpine
COPY nginx.conf /src/nginx.conf
ENTRYPOINT ["nginx", "-c", "/src/nginx.conf"]