diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ FROM docker.io/python:3.12.3-slim-bookworm as python # Python build stage FROM python as python-build-stage -ARG BUILD_ENVIRONMENT=production +ARG BUILD_ENVIRONMENT=requirements # Install apt packages RUN apt-get update && apt-get install --no-install-recommends -y \ @@ -15,7 +15,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ libpq-dev # Requirements are installed here to ensure they will be cached. -COPY ./requirements . +COPY ./requirements.txt . # Create Python Dependency and Sub-Dependency Wheels. RUN pip wheel --wheel-dir /usr/src/app/wheels \ |