Update Dockerfile
Some checks failed
Docker hub build / docker (push) Failing after 22s

This commit is contained in:
Alexandr Bogomyakov
2025-03-17 15:04:59 +02:00
committed by GitHub
parent c6da8ea250
commit 8d8d6bb671

View File

@ -3,7 +3,7 @@ FROM python:3-slim
WORKDIR /app WORKDIR /app
COPY ./requirements.txt . 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 . . COPY . .
RUN python manage.py collectstatic --noinput RUN python manage.py collectstatic --noinput