docker-pdns/pdns/Dockerfile
2020-08-25 00:22:06 +02:00

27 lines
509 B
Docker

FROM fedora:32
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf \
&& dnf -y --setopt=install_weak_deps=False install \
hostname \
mariadb \
pdns \
pdns-backend-mysql \
python3-pip \
&& dnf clean all
RUN pip3 install --no-cache-dir envtpl
ENV VERSION=4.3 \
PDNS_guardian=yes \
PDNS_setuid=pdns \
PDNS_setgid=pdns \
PDNS_launch=gmysql
EXPOSE 53 53/udp
COPY pdns.conf.tpl /
COPY docker-entrypoint.sh /
ENTRYPOINT [ "/docker-entrypoint.sh" ]
CMD [ "/usr/sbin/pdns_server" ]