mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2024-11-13 03:47:56 +01:00
c9247f4b32
* Update PDNS recursor version in Fedora image * Update PDNS version in alpine image * Update Dockerfile * Update Dockerfile * Update mariadb image version in kubernetes example * Update admin images in k8s example * Update ansible-playbook.yml * Fix PDNS version in k8s example * Update docker-compose.yml * Update README.md * Update docker-image.yml * Update docker-image-pr.yml
28 lines
615 B
Docker
28 lines
615 B
Docker
FROM fedora:34
|
|
|
|
RUN dnf -y --setopt=install_weak_deps=False install \
|
|
pdns-recursor \
|
|
python3-pip \
|
|
python3-setuptools \
|
|
&& dnf clean all
|
|
|
|
RUN pip3 install --no-cache-dir envtpl
|
|
|
|
RUN mkdir -p /etc/pdns-recursor/api.d \
|
|
&& chown -R pdns-recursor: /etc/pdns-recursor/api.d \
|
|
&& mkdir -p /run/pdns-recursor \
|
|
&& chown -R pdns-recursor: /run/pdns-recursor
|
|
|
|
ENV VERSION=4.4 \
|
|
PDNS_setuid=pdns-recursor \
|
|
PDNS_setgid=pdns-recursor \
|
|
PDNS_daemon=no
|
|
|
|
EXPOSE 53 53/udp
|
|
|
|
COPY recursor.conf.tpl /
|
|
COPY docker-entrypoint.sh /
|
|
|
|
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|
|
|
|
CMD [ "/usr/sbin/pdns_recursor" ]
|