docker-pdns/pdns-recursor/Dockerfile

28 lines
828 B
Docker
Raw Normal View History

FROM fedora:39
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 \
&& 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 \
&& dnf clean all
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 /
ENV VERSION=4.9 \
2018-11-06 22:51:45 +01:00
PDNS_setuid=pdns-recursor \
PDNS_setgid=pdns-recursor \
PDNS_daemon=no
EXPOSE 53 53/udp
2018-11-22 19:45:43 +01:00
ENTRYPOINT [ "/docker-entrypoint.sh" ]
CMD [ "/usr/sbin/pdns_recursor" ]