Add Redis into the image
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Luke Murphy 2020-04-09 19:24:34 +02:00
parent 86df55e7e8
commit 0f218b6666
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 6 additions and 0 deletions

View File

@ -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}