This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
alerta/Dockerfile

16 lines
386 B
Docker

FROM alerta/alerta-web:8.3.3
EXPOSE 8080
RUN /venv/bin/pip install git+https://github.com/alerta/alerta-contrib.git#subdirectory=integrations/mailer
RUN /venv/bin/pip install git+https://github.com/alerta/alerta-contrib.git#subdirectory=plugins/rocketchat
COPY . ${WORKDIR}
COPY sbin/* /sbin/
ENTRYPOINT ["/sbin/entrypoint.sh"]
CMD ["supervisord", "-c", "/app/supervisord.conf"]