From 8d8d6bb6714e7daec72d12b18affc7dcc25a7046 Mon Sep 17 00:00:00 2001 From: Alexandr Bogomyakov Date: Mon, 17 Mar 2025 15:04:59 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 649db4e..8e1f428 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM python:3-slim WORKDIR /app COPY ./requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt +RUN apk update && apk add git && pip install --no-cache-dir -r requirements.txt COPY . . RUN python manage.py collectstatic --noinput