From 10fc4f606c60e80592a3b95b5011182c69b5918c Mon Sep 17 00:00:00 2001 From: vvzvlad Date: Mon, 14 Apr 2025 18:24:10 +0300 Subject: [PATCH] update Dockerfile to include git --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 44b097d..a99a72f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 .