mirror of
https://github.com/certat/intelmq-docker.git
synced 2025-12-06 01:02:52 +01:00
24 lines
779 B
Docker
24 lines
779 B
Docker
FROM certat/intelmq-full:latest
|
|
ENV LANG C.UTF-8
|
|
|
|
LABEL maintainer="Einar <elanfranco@csirtamericas.org>"
|
|
LABEL maintainer="Jeremias <jpretto@cert.unlp.edu.ar>"
|
|
LABEL maintainer="Mateo <mdurante@cert.unlp.edu.ar>"
|
|
RUN sudo apt-get update \
|
|
&& sudo apt-get install -y --no-install-recommends \
|
|
git \
|
|
vim \
|
|
&& sudo rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /opt
|
|
ADD entrypoint-dev.sh /opt/entrypoint-dev.sh
|
|
ADD install_reqs_and_deploy_bots /opt/install_reqs_and_deploy_bots.sh
|
|
RUN sudo chmod +x /opt/entrypoint-dev.sh \
|
|
&& sudo chown intelmq:intelmq /opt/entrypoint-dev.sh
|
|
RUN sudo chmod +x /opt/install_reqs_and_deploy_bots.sh \
|
|
&& sudo chown intelmq:intelmq /opt/install_reqs_and_deploy_bots.sh
|
|
|
|
USER intelmq:intelmq
|
|
|
|
ENTRYPOINT [ "/opt/entrypoint-dev.sh" ]
|