mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2024-11-13 03:47:56 +01:00
2ca17d9d18
This also updates the pdns to version 4.2
27 lines
509 B
Docker
27 lines
509 B
Docker
FROM fedora:31
|
|
|
|
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.2 \
|
|
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" ]
|