2021-09-01 18:56:44 +02:00
|
|
|
ARG DISTRO=alpine:3.14.2
|
2019-08-21 18:24:30 +02:00
|
|
|
FROM $DISTRO
|
2018-10-31 19:17:23 +02:00
|
|
|
# python3 shared with most images
|
|
|
|
RUN apk add --no-cache \
|
2019-11-21 12:28:58 +02:00
|
|
|
python3 py3-pip git bash py3-multidict \
|
2018-10-31 19:17:23 +02:00
|
|
|
&& pip3 install --upgrade pip
|
2019-07-25 10:33:57 +02:00
|
|
|
|
|
|
|
# Shared layer between nginx, dovecot, postfix, postgresql, rspamd, unbound, rainloop, roundcube
|
2019-08-23 08:43:59 +02:00
|
|
|
RUN pip3 install socrate==0.2.0
|
2019-07-25 10:33:57 +02:00
|
|
|
|
2018-10-31 19:17:23 +02:00
|
|
|
# Image specific layers under this line
|
2021-11-02 12:18:21 +02:00
|
|
|
RUN apk add --no-cache certbot nginx nginx-mod-mail openssl curl tzdata \
|
2019-07-25 10:33:57 +02:00
|
|
|
&& pip3 install watchdog
|
2017-09-24 13:09:12 +02:00
|
|
|
|
|
|
|
COPY conf /conf
|
2019-01-06 15:49:40 +02:00
|
|
|
COPY static /static
|
2017-09-24 17:50:10 +02:00
|
|
|
COPY *.py /
|
2017-09-24 13:09:12 +02:00
|
|
|
|
2021-10-27 09:59:55 +02:00
|
|
|
RUN gzip -k9 /static/*.ico /static/*.txt; chmod a+rX -R /static
|
2021-09-02 20:46:56 +02:00
|
|
|
|
2018-04-21 14:46:01 +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
|
2018-09-28 17:12:50 +02:00
|
|
|
VOLUME ["/certs"]
|
2018-11-27 01:12:12 +02:00
|
|
|
VOLUME ["/overrides"]
|
2018-04-21 14:46:01 +02:00
|
|
|
|
2017-09-24 14:01:03 +02:00
|
|
|
CMD /start.py
|
2018-10-16 21:38:12 +02:00
|
|
|
|
2018-10-21 19:45:41 +02:00
|
|
|
HEALTHCHECK CMD curl -k -f -L http://localhost/health || exit 1
|