2023-12-17 02:36:45 +01:00
|
|
|
FROM fedora:39
|
2017-12-11 14:18:10 +01:00
|
|
|
|
2023-12-19 22:20:10 +01:00
|
|
|
RUN echo 'install_weak_deps=False' >> /etc/dnf/dnf.conf \
|
|
|
|
&& 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 \
|
|
|
|
&& dnf install pdns-recursor \
|
2017-12-11 14:18:10 +01:00
|
|
|
&& dnf clean all
|
|
|
|
|
2023-12-19 18:25:44 +01:00
|
|
|
RUN arch=$([ "$(arch)" = 'aarch64' ] && echo -n 'arm64' || echo -n 'x86_64') \
|
|
|
|
&& curl -fsSL https://github.com/kha7iq/subvars/releases/download/v0.1.4/subvars_Linux_${arch}.tar.gz \
|
|
|
|
| tar -xzf - -C /usr/local/bin subvars \
|
|
|
|
&& chmod +x /usr/local/bin/subvars
|
2017-12-11 14:18:10 +01:00
|
|
|
|
2023-12-19 22:20:10 +01:00
|
|
|
RUN mkdir -p /etc/pdns-recursor/api.d /run/pdns-recursor \
|
|
|
|
&& chown -R pdns-recursor: /etc/pdns-recursor/api.d /run/pdns-recursor
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2018-11-22 19:45:43 +01:00
|
|
|
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|
|
|
|
|
|
|
|
CMD [ "/usr/sbin/pdns_recursor" ]
|