diff options
Diffstat (limited to 'docker/nginx/Dockerfile')
-rw-r--r-- | docker/nginx/Dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docker/nginx/Dockerfile b/docker/nginx/Dockerfile new file mode 100644 index 0000000..9389b77 --- /dev/null +++ b/docker/nginx/Dockerfile @@ -0,0 +1,13 @@ +FROM debian:bullseye + +ENV DEBIAN_FRONTEND noninteractive + +RUN apt update +RUN apt install -y nginx supervisor emacs-nox procps +RUN apt clean + +COPY supervisord.conf /etc/supervisor/ +COPY nginx.conf /etc/nginx/sites-available/default + +ENTRYPOINT supervisord -c /etc/supervisor/supervisord.conf + |