From b1496592bc165ec79daa4c607bed80a6c5004561 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Thu, 9 Apr 2020 20:17:14 +0200 Subject: [PATCH] Remove bogus redis-server install command --- Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index e149f42..3df4df2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,10 +4,4 @@ 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}