Skip to content
Snippets Groups Projects
Dockerfile 202 B
Newer Older
Matevz Erzen's avatar
Matevz Erzen committed
# syntax=docker/dockerfile:1

FROM python:3.8-slim-buster

WORKDIR /evidence-collector/

COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt

COPY . .

CMD ["python3", "test.py"]