mirror of
https://github.com/splunk/security_content
synced 2026-06-08 17:32:49 +00:00
17 lines
439 B
Docker
17 lines
439 B
Docker
FROM ubuntu:18.04
|
|
|
|
RUN apt-get update
|
|
RUN DEBIAN_FRONTEND="noninteractive" apt-get -y install tzdata
|
|
RUN apt-get install -y python3-dev git python-dev unzip python3-pip awscli
|
|
RUN apt-get install -y python-gitdb
|
|
RUN apt-get install -y wget unzip
|
|
RUN apt-get install -y git
|
|
|
|
ADD . /app
|
|
|
|
WORKDIR /app
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
ENTRYPOINT ["python3", "detection_testing_execution.py"]
|
|
CMD ["-b", "automated_detections_testing_2"]
|