diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2df3da6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +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"] + +