mirror of
https://github.com/pschiffe/docker-pdns.git
synced 2024-11-13 03:47:56 +01:00
12 lines
222 B
Docker
12 lines
222 B
Docker
FROM pschiffe/pdns-admin-base
|
|
|
|
RUN dnf install nginx \
|
|
&& dnf clean all
|
|
|
|
COPY pdns-nginx.conf.tpl docker-entrypoint.sh /
|
|
|
|
EXPOSE 80
|
|
|
|
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|
|
|
|
CMD [ "/usr/sbin/nginx", "-g", "daemon off;" ]
|