update Dockerfile to include git

This commit is contained in:
vvzvlad
2025-04-14 18:24:10 +03:00
parent 46ce824ed0
commit 10fc4f606c
+1 -1
View File
@@ -3,7 +3,7 @@ FROM python:3.11-slim
WORKDIR /app
RUN mkdir -p data
COPY requirements.txt .
RUN apt-get update && apt-get install -y libmagic-dev curl --no-install-recommends && apt-get clean && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get install -y libmagic-dev git curl --no-install-recommends && apt-get clean && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir -r requirements.txt
COPY *.py .