mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
12 lines
317 B
Docker
12 lines
317 B
Docker
FROM docker.repo.splunkdev.net/ci-cd/ci-container:python-3.7-buster
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y python3-dev git python-dev unzip python3-pip
|
|
RUN apt-get install -y python-gitdb
|
|
|
|
WORKDIR /app
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
ENTRYPOINT ["python3", "detection_service.py"]
|
|
CMD ["-tfn", "T1003_002"]
|