Files
ContainerOrchestrator/srcs/requirements/nginx/Dockerfile
T
H3XploR 40328d2980 oui
2025-07-08 01:08:28 +02:00

14 lines
321 B
Docker

FROM alpine:3.20
RUN apk update && apk add --no-cache nginx openssl bash
# Copie des fichiers de configuration
COPY conf/nginx.conf /etc/nginx/nginx.conf
COPY conf/default.conf /etc/nginx/http.d/default.conf
COPY tools/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
EXPOSE 443
ENTRYPOINT ["/entrypoint.sh"]