Files
mailu/core/nginx/Dockerfile

12 lines
239 B
Docker

FROM alpine:3.13
RUN apk add --no-cache nginx nginx-mod-mail python3 py3-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 /
CMD /start.py