docker-pdns/pdns/Dockerfile

29 lines
534 B
Docker
Raw Normal View History

FROM fedora:35
2016-09-02 22:48:20 +02:00
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf \
&& dnf -y --setopt=install_weak_deps=False install \
hostname \
mariadb \
2017-08-21 21:28:23 +02:00
pdns \
pdns-backend-mysql \
python3-pip \
2021-01-22 14:22:50 +01:00
python3-setuptools \
2017-08-21 21:28:23 +02:00
&& dnf clean all
2016-09-02 22:48:20 +02:00
2018-11-07 00:50:42 +01:00
RUN pip3 install --no-cache-dir envtpl
2016-09-02 22:48:20 +02:00
ENV VERSION=4.5 \
2017-08-21 21:28:23 +02:00
PDNS_guardian=yes \
PDNS_setuid=pdns \
PDNS_setgid=pdns \
PDNS_launch=gmysql
2016-09-02 22:48:20 +02:00
EXPOSE 53 53/udp
COPY pdns.conf.tpl /
2018-11-22 19:45:43 +01:00
COPY docker-entrypoint.sh /
2016-09-02 22:48:20 +02:00
2018-11-22 19:45:43 +01:00
ENTRYPOINT [ "/docker-entrypoint.sh" ]
CMD [ "/usr/sbin/pdns_server" ]