Files
mailu/core/nginx/Dockerfile
2018-11-09 13:34:28 +02:00

14 lines
273 B
Docker

FROM alpine:3.8
RUN apk add --no-cache nginx nginx-mod-mail python py-jinja2 certbot openssl
# added to fix #522
RUN apk add --no-cache py-requests-toolbelt py-pip
RUN pip install "idna<2.7"
COPY conf /conf
COPY *.py /
COPY dhparam.pem /certs/dhparam.pem
CMD /start.py