This repository has been archived on 2020-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
alerta.autonomic.zone/Dockerfile
Luke Murphy 0f218b6666
Some checks failed
continuous-integration/drone/push Build is failing
Add Redis into the image
2020-04-09 19:24:34 +02:00

14 lines
323 B
Docker

FROM alerta/alerta-web:7.4.5
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}