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

15 lines
385 B
Docker
Raw Normal View History

2020-04-09 09:02:14 +00:00
FROM alerta/alerta-web:7.4.5
2020-04-08 17:45:03 +00:00
EXPOSE 8080
2020-04-09 17:06:09 +00:00
RUN /venv/bin/pip install git+https://github.com/alerta/alerta-contrib.git#subdirectory=integrations/mailer
2020-04-10 13:53:20 +00:00
RUN /venv/bin/pip install git+https://github.com/alerta/alerta-contrib.git#subdirectory=plugins/rocketchat
2020-04-09 17:06:09 +00:00
2020-04-08 17:45:03 +00:00
COPY . ${WORKDIR}
2020-04-10 10:00:12 +00:00
COPY sbin/* /sbin/
ENTRYPOINT ["/sbin/entrypoint.sh"]
2020-04-10 10:10:44 +00:00
CMD ["supervisord", "-c", "/app/supervisord.conf"]