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

Matevz Erzen's avatar
Matevz Erzen committed
FROM nexus-registry.xlab.si:5001/python:3.8-slim-buster
Matevz Erzen's avatar
Matevz Erzen committed

WORKDIR /evidence-collector
Matevz Erzen's avatar
Matevz Erzen committed

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

COPY . .

Matevz Erzen's avatar
Matevz Erzen committed
RUN apt-get update && apt-get install -y redis-server jq
Matevz Erzen's avatar
Matevz Erzen committed
ENTRYPOINT ["./entrypoint.sh"]