2021-12-01 15:19:45 +01:00
|
|
|
FROM fedora:35
|
2017-12-11 14:18:10 +01:00
|
|
|
|
2017-12-11 14:27:32 +01:00
|
|
|
RUN dnf -y --setopt=install_weak_deps=False install \
|
2017-12-11 14:18:10 +01:00
|
|
|
pdns-recursor \
|
2020-01-03 17:52:23 +01:00
|
|
|
python3-pip \
|
2021-01-22 14:22:50 +01:00
|
|
|
python3-setuptools \
|
2017-12-11 14:18:10 +01:00
|
|
|
&& dnf clean all
|
|
|
|
|
2018-11-06 22:51:45 +01:00
|
|
|
RUN pip3 install --no-cache-dir envtpl
|
2017-12-11 14:18:10 +01:00
|
|
|
|
2018-11-06 22:51:45 +01:00
|
|
|
RUN mkdir -p /etc/pdns-recursor/api.d \
|
2020-08-25 00:22:06 +02:00
|
|
|
&& chown -R pdns-recursor: /etc/pdns-recursor/api.d \
|
|
|
|
&& mkdir -p /run/pdns-recursor \
|
|
|
|
&& chown -R pdns-recursor: /run/pdns-recursor
|
2017-12-27 18:58:53 +01:00
|
|
|
|
2021-12-27 22:18:26 +01:00
|
|
|
ENV VERSION=4.5 \
|
2018-11-06 22:51:45 +01:00
|
|
|
PDNS_setuid=pdns-recursor \
|
|
|
|
PDNS_setgid=pdns-recursor \
|
2017-12-11 14:18:10 +01:00
|
|
|
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" ]
|