DeTTECT/Dockerfile

20 lines
626 B
Docker

FROM python:3.7-alpine
LABEL version="1.1.2"
# update repository and install Linux packages
RUN apk update && \
apk upgrade && \
apk add --no-cache bash libc-dev build-base
# clone the newest version of DeTT&CT and install requirements
COPY . /opt/DeTTECT
WORKDIR /opt/DeTTECT
RUN pip install --no-cache-dir -r requirements.txt
# create an input and output directory
# within this directory, you can put your data source, technique and group YAML administration files.
RUN mkdir -p input
# within this directory, the output files from DeTT&CT are written. Such as ATT&CK Navigator layer files.
RUN mkdir -p output