8 lines
261 B
Docker
8 lines
261 B
Docker
FROM ubuntu:22.04
|
|
RUN apt-get update; apt-get install -y wget gpg unzip
|
|
RUN apt-get update; apt-get install -y nginx supervisor
|
|
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
|
CMD ["supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]
|
|
|
|
|