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