docker-pdns/pdns-recursor/Dockerfile

29 lines
615 B
Docker
Raw Permalink Normal View History

FROM fedora:34
RUN dnf -y --setopt=install_weak_deps=False install \
pdns-recursor \
python3-pip \
2021-01-22 14:22:50 +01:00
python3-setuptools \
&& dnf clean all
2018-11-06 22:51:45 +01:00
RUN pip3 install --no-cache-dir envtpl
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
ENV VERSION=4.4 \
2018-11-06 22:51:45 +01:00
PDNS_setuid=pdns-recursor \
PDNS_setgid=pdns-recursor \
PDNS_daemon=no
EXPOSE 53 53/udp
COPY recursor.conf.tpl /
2018-11-22 19:45:43 +01:00
COPY docker-entrypoint.sh /
2018-11-22 19:45:43 +01:00
ENTRYPOINT [ "/docker-entrypoint.sh" ]
CMD [ "/usr/sbin/pdns_recursor" ]