blob: 9389b77688bdad28ed74f7948cf4be80005f02ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|