Inception/srcs/requirements/nginx/Dockerfile
Willem Haffmans 8ded6e8358 hoppaa
2025-05-21 22:51:26 +02:00

10 lines
170 B
Docker

FROM alpine:3.20
RUN apk add --no-cache \
nginx &&\
rm -rf /var/cache/apk/*
COPY ./conf/nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]