2023-01-13 22:06:44 +01:00
|
|
|
FROM fedora:37
|
2016-09-02 22:48:20 +02:00
|
|
|
|
2017-11-26 00:03:36 +01:00
|
|
|
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf \
|
|
|
|
&& dnf -y --setopt=install_weak_deps=False install \
|
2020-01-03 17:52:23 +01:00
|
|
|
hostname \
|
|
|
|
mariadb \
|
2017-08-21 21:28:23 +02:00
|
|
|
pdns \
|
|
|
|
pdns-backend-mysql \
|
2020-01-03 17:52:23 +01:00
|
|
|
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
|
|
|
|
2022-03-25 22:18:01 +01:00
|
|
|
RUN pip3 install --no-cache-dir 'Jinja2<3.1' envtpl
|
2016-09-02 22:48:20 +02:00
|
|
|
|
2023-01-15 17:06:10 +01:00
|
|
|
ENV VERSION=4.7 \
|
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" ]
|