Files
splunk-security_content/automated_detection_testing/ci/labeled_data/Dockerfile
T
P4T12ICK d58ccc5e0b WIP
2021-07-02 14:58:37 +02:00

15 lines
352 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
ADD . /app
WORKDIR /app
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3", "labeled_data.py"]