Files
securityonion/salt/idh/Dockerfile
2022-02-07 14:36:40 -05:00

12 lines
307 B
Docker

FROM python:3.6-slim
WORKDIR /root/
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
RUN apt update && apt-get install -y sudo supervisor && rm -rf /var/lib/apt/lists/*
RUN pip install opencanary
ADD supervise-opencanary.conf /etc/supervisor/conf.d/supervise-opencanary.conf
CMD ["/usr/bin/supervisord", "-n"]