docker-pdns/pdns-admin-static-ngoduykhanh/Dockerfile
Peter Schiffer c9247f4b32
Minor updates (#59)
* 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
2021-10-06 00:00:38 +02:00

11 lines
219 B
Docker

FROM pschiffe/pdns-admin-base
RUN dnf -y --setopt=install_weak_deps=False install \
nginx \
&& dnf clean all
EXPOSE 80
COPY pdns-nginx.conf /etc/nginx/nginx.conf
CMD [ "/usr/sbin/nginx", "-g", "daemon off;" ]