From 0f218b6666af50a893ea26af81f44b9192696460 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Thu, 9 Apr 2020 19:24:34 +0200 Subject: [PATCH] Add Redis into the image --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3df4df2..e149f42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,4 +4,10 @@ EXPOSE 8080 RUN /venv/bin/pip install git+https://github.com/alerta/alerta-contrib.git#subdirectory=integrations/mailer +RUN apt-get install -y --no-install-recommends \ + redis-server && \ + apt-get -y clean && \ + apt-get -y autoremove && \ + rm -rf /var/lib/apt/lists/* + COPY . ${WORKDIR}