Update Dockerfile

This commit is contained in:
2024-01-08 10:26:36 +01:00
committed by GitHub
parent 2cec337f0d
commit 17bfa2d449

View File

@@ -13,7 +13,8 @@ WORKDIR /app
# we copy just the requirements.txt first to leverage Docker cache
COPY requirements.txt .
# Install pip requirements
# Install pip requirements + git
RUN apt update && apt install git
RUN pip install -r requirements.txt