docker-pdns/pdns-recursor/Dockerfile

26 lines
530 B
Docker
Raw Normal View History

2019-05-25 22:59:12 +02:00
FROM fedora:30
2018-11-06 22:51:45 +01:00
MAINTAINER "Peter Schiffer" <peter@rfv.sk>
RUN dnf -y --setopt=install_weak_deps=False install \
pdns-recursor \
&& 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 \
&& chown -R pdns-recursor: /etc/pdns-recursor/api.d
2018-11-06 22:51:45 +01:00
ENV VERSION=4.1 \
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" ]