From 1f253fb8fb0ca71598a7f9c2d896a5b802d39ec9 Mon Sep 17 00:00:00 2001 From: Joseph Date: Fri, 15 Nov 2024 10:27:41 +0000 Subject: [PATCH] added git to dockerfile --- docker/python | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/python b/docker/python index a1bb036..9d7a381 100644 --- a/docker/python +++ b/docker/python @@ -3,6 +3,8 @@ FROM python:3.13-slim WORKDIR /app COPY ./requirements.txt . +RUN apk add --no-cache git + # install dependencies # --no-cache-dir flag reduces the image size RUN pip install --no-cache-dir -r requirements.txt