docker-pdns/pdns/Dockerfile

27 lines
491 B
Docker
Raw Normal View History

2019-05-25 22:59:12 +02:00
FROM fedora:30
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 \
2017-08-21 21:28:23 +02:00
pdns \
pdns-backend-mysql \
mariadb \
2019-09-28 23:25:03 +02:00
hostname \
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
2018-11-07 00:50:42 +01:00
ENV VERSION=4.1 \
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" ]