2023-12-17 02:36:45 +01:00
|
|
|
FROM fedora:39
|
2017-12-11 14:18:10 +01:00
|
|
|
|
2023-12-23 21:45:09 +01:00
|
|
|
RUN arch=$([ "$(arch)" = 'aarch64' ] && echo -n 'arm64' || echo -n 'amd64') \
|
|
|
|
&& echo 'install_weak_deps=False' >> /etc/dnf/dnf.conf \
|
2023-12-19 22:20:10 +01:00
|
|
|
&& echo 'assumeyes=True' >> /etc/dnf/dnf.conf \
|
2023-12-23 21:09:22 +01:00
|
|
|
&& sed -i 's/enabled=1/enabled=0/g' /etc/yum.repos.d/fedora-cisco-openh264.repo \
|
2023-12-19 22:20:10 +01:00
|
|
|
&& dnf --refresh upgrade \
|
2023-12-23 21:45:09 +01:00
|
|
|
&& dnf install \
|
|
|
|
pdns-recursor \
|
|
|
|
https://github.com/kha7iq/subvars/releases/download/v0.1.5/subvars_${arch}.rpm \
|
2017-12-11 14:18:10 +01:00
|
|
|
&& dnf clean all
|
|
|
|
|
2023-12-19 22:20:10 +01:00
|
|
|
RUN mkdir -p /etc/pdns-recursor/api.d /run/pdns-recursor \
|
2024-02-05 17:18:05 +01:00
|
|
|
&& chown -R pdns-recursor: /etc/pdns-recursor /run/pdns-recursor
|
2023-12-19 22:20:10 +01:00
|
|
|
|
|
|
|
COPY recursor.conf.tpl docker-entrypoint.sh /
|
2017-12-27 18:58:53 +01:00
|
|
|
|
2023-12-17 02:36:45 +01:00
|
|
|
ENV VERSION=4.9 \
|
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
|
|
|
|
|
2024-01-03 22:28:50 +01:00
|
|
|
HEALTHCHECK --interval=10s --timeout=10s --retries=3 --start-period=2s CMD ["rec_control", "ping"]
|
|
|
|
|
2018-11-22 19:45:43 +01:00
|
|
|
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|
|
|
|
|
|
|
|
CMD [ "/usr/sbin/pdns_recursor" ]
|