aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index e81a03c..35a1ffd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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 \