docker-pdns/pdns-recursor/Dockerfile

31 lines
942 B
Docker
Raw Normal View History

FROM fedora:40
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 \
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 /
ENV VERSION=5.0 \
2018-11-06 22:51:45 +01:00
PDNS_setuid=pdns-recursor \
PDNS_setgid=pdns-recursor \
PDNS_daemon=no \
PDNS_loglevel=5
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" ]