diff options
-rw-r--r-- | Dockerfile | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -17,20 +17,6 @@ RUN pip install -U "pip>=24.0.0" && \ pip install -r requirements.txt && \ python manage.py collectstatic --noinput -# Final stage -FROM python:3.11-slim - -# Set working directory -WORKDIR /app - -# Copy from builder -COPY --from=builder /app /app - -RUN apt update && apt install -y --no-install-recommends libpq-dev build-essential - -# Install packages -RUN pip install -r requirements.txt - ENV DJANGO_SETTINGS_MODULE=conf.settings.local EXPOSE 8000 |