1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-01-20 03:29:50 +02:00
Mailu/core/nginx/Dockerfile

23 lines
696 B
Docker
Raw Normal View History

2018-10-11 14:06:26 +03:00
FROM alpine:3.8
# python3 shared with most images
RUN apk add --no-cache \
python3 py3-pip git bash \
&& pip3 install --upgrade pip
# Shared layer between rspamd, postfix, dovecot, unbound and nginx
2019-01-24 16:14:33 +02:00
RUN pip3 install git+https://github.com/usrpro/MailuStart.git#egg=mailustart
# Image specific layers under this line
2018-10-16 21:38:12 +02:00
RUN apk add --no-cache certbot nginx nginx-mod-mail openssl curl \
&& pip3 install idna requests watchdog
2017-09-24 13:09:12 +02:00
COPY conf /conf
COPY static /static
COPY *.py /
2017-09-24 13:09:12 +02:00
EXPOSE 80/tcp 443/tcp 110/tcp 143/tcp 465/tcp 587/tcp 993/tcp 995/tcp 25/tcp 10025/tcp 10143/tcp
VOLUME ["/certs"]
VOLUME ["/overrides"]
2017-09-24 14:01:03 +02:00
CMD /start.py
2018-10-16 21:38:12 +02:00
HEALTHCHECK CMD curl -k -f -L http://localhost/health || exit 1