2020-06-15 17:32:56 +02:00
|
|
|
ARG DISTRO=alpine:3.12
|
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
|
2020-06-15 17:32:56 +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
|
2018-10-23 14:07:49 +02:00
|
|
|
RUN apk add --no-cache unbound curl bind-tools \
|
|
|
|
&& curl -o /etc/unbound/root.hints https://www.internic.net/domain/named.cache \
|
|
|
|
&& chown root:unbound /etc/unbound \
|
|
|
|
&& chmod 775 /etc/unbound \
|
|
|
|
&& apk del --no-cache curl \
|
|
|
|
&& /usr/sbin/unbound-anchor -a /etc/unbound/trusted-key.key | true
|
|
|
|
|
|
|
|
COPY start.py /start.py
|
|
|
|
COPY unbound.conf /unbound.conf
|
|
|
|
|
|
|
|
EXPOSE 53/udp 53/tcp
|
|
|
|
|
|
|
|
CMD /start.py
|
|
|
|
|
|
|
|
HEALTHCHECK CMD dig @127.0.0.1 || exit 1
|