2021-01-22 14:22:50 +01:00
|
|
|
FROM alpine:3.13
|
2017-12-11 14:57:44 +01:00
|
|
|
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
pdns-recursor \
|
2020-08-25 00:22:06 +02:00
|
|
|
py3-pip \
|
2017-12-11 14:57:44 +01:00
|
|
|
python3
|
2017-12-11 14:18:10 +01:00
|
|
|
|
2018-11-06 22:51:45 +01:00
|
|
|
RUN pip3 install --no-cache-dir envtpl
|
2017-12-11 14:18:10 +01:00
|
|
|
|
2017-12-27 18:58:53 +01:00
|
|
|
RUN mkdir -p /etc/pdns/api.d \
|
2020-08-25 00:22:06 +02:00
|
|
|
&& chown -R recursor: /etc/pdns/api.d \
|
|
|
|
&& mkdir -p /var/run/pdns-recursor \
|
|
|
|
&& chown -R recursor: /var/run/pdns-recursor
|
2017-12-27 18:58:53 +01:00
|
|
|
|
2021-01-22 14:22:50 +01:00
|
|
|
ENV VERSION=4.4 \
|
2017-12-11 14:18:10 +01:00
|
|
|
PDNS_setuid=recursor \
|
|
|
|
PDNS_setgid=recursor \
|
|
|
|
PDNS_daemon=no
|
|
|
|
|
|
|
|
EXPOSE 53 53/udp
|
|
|
|
|
|
|
|
COPY recursor.conf.tpl /
|
2018-11-22 19:45:43 +01:00
|
|
|
COPY docker-entrypoint.sh /
|
2017-12-11 14:18:10 +01:00
|
|
|
|
2018-11-22 19:45:43 +01:00
|
|
|
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|
|
|
|
|
|
|
|
CMD [ "/usr/sbin/pdns_recursor" ]
|