mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2024-11-13 03:47:56 +01:00
11 lines
263 B
Docker
11 lines
263 B
Docker
|
FROM pschiffe/pdns-admin-base:ngoduykhanh
|
||
|
MAINTAINER "Peter Schiffer" <peter@rfv.sk>
|
||
|
|
||
|
RUN dnf -y --setopt=install_weak_deps=False install \
|
||
|
nginx \
|
||
|
&& dnf clean all
|
||
|
|
||
|
COPY pdns-nginx.conf /etc/nginx/nginx.conf
|
||
|
|
||
|
CMD [ "/usr/sbin/nginx", "-g", "daemon off;" ]
|