2023-04-21 17:34:11 +02:00
|
|
|
FROM alpine:3.17.3
|
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
|
|
|
|
2023-04-21 18:51:25 +02: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
|
|
|
|
2023-01-15 17:06:10 +01:00
|
|
|
ENV VERSION=4.7 \
|
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" ]
|