From 52390e3c45f4078fe7fe0dbeb508a5d33e786711 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 3 Nov 2025 19:20:38 +0100 Subject: [PATCH] Added git to the docker image --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 30e88de..c616a34 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ FROM python:3.12-slim +RUN apt-get update && apt-get install -y git + COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt