From dd79077a605ce8736d0e31ab3e2aaadf7d316707 Mon Sep 17 00:00:00 2001 From: Argiris Deligiannidis Date: Sun, 7 Apr 2024 13:49:42 +0300 Subject: [PATCH] Add git to python-slim for docker image (CI) --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 379d5bc..7306f6b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,9 @@ WORKDIR /code # Copy the requirements file to the working directory COPY ./requirements.txt /code/requirements.txt +RUN apt-get update +RUN apt-get install -y git + # Install the Python dependencies RUN pip config --user set global.progress_bar off RUN pip install --no-cache-dir --prefer-binary -r /code/requirements.txt