mirror of
https://github.com/certat/intelmq-docker.git
synced 2025-12-06 09:12:49 +01:00
19 lines
447 B
Docker
19 lines
447 B
Docker
FROM certat/intelmq-full:1.0
|
|
|
|
ADD entrypoint_dev.sh /opt/dev/entrypoint_dev.sh
|
|
ADD update.sh /opt/dev/update.sh
|
|
ADD merge_BOTS.py /opt/dev/merge_BOTS.py
|
|
|
|
# Merge bots for merge_BOTS.py
|
|
RUN sudo python3 -m pip install jsonmerge
|
|
|
|
USER intelmq:intelmq
|
|
|
|
# Permission denied when installing new bots
|
|
RUN sudo chown -R intelmq:intelmq /opt/intelmq/intelmq.egg-info
|
|
|
|
ENV PATH="/opt/intelmq/.local/bin:${PATH}"
|
|
|
|
ENTRYPOINT ["/opt/dev/entrypoint_dev.sh"]
|
|
|