From ac0adf6ad87cdb9ed94df10067e352f66f7095d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radim=20Lipov=C4=8Dan?= Date: Tue, 26 Mar 2024 09:07:32 +0100 Subject: [PATCH] =?UTF-8?q?P=C5=99idat=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile 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"] + +