mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-01-06 08:13:32 +01:00
12 lines
307 B
Docker
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"] |