From 721312c8a6416fd5fe1834ef234dc658578f1c2c Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Fri, 8 Jan 2021 14:40:42 +0100 Subject: [PATCH] Add EXPOSE and CMD to dockerfile --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 93fbc14..7ca3038 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,9 @@ FROM alerta/alerta-web:8.3.3 +EXPOSE 8080 + RUN /venv/bin/pip install git+https://github.com/alerta/alerta-contrib.git#subdirectory=integrations/mailer RUN /venv/bin/pip install git+https://github.com/alerta/alerta-contrib.git#subdirectory=plugins/rocketchat + +CMD ["supervisord", "-c", "/app/supervisord.conf"]