From 8550f2725f2faf0fbb3621622f51f2fe05e123af Mon Sep 17 00:00:00 2001 From: Torfinn Ingolfsen Date: Sun, 3 Sep 2023 18:45:22 +0200 Subject: [PATCH] add git to the docker image, since we need to download froma git repository --- p2k16-label/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/p2k16-label/Dockerfile b/p2k16-label/Dockerfile index 454a443..589885d 100644 --- a/p2k16-label/Dockerfile +++ b/p2k16-label/Dockerfile @@ -1,4 +1,6 @@ FROM python:3.9-slim-bullseye +RUN apt update +RUN apt install git RUN useradd --create-home --shell /bin/bash app_user WORKDIR /home/app_user COPY requirements.txt ./