14 lines
321 B
Docker
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"]
|