aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2023-01-16 20:49:24 +0000
committerGravatar Chris Lovering <[email protected]>2023-02-27 23:57:52 +0000
commitd4340fdc02c456c5e523f938a725030f585cb03a (patch)
treeaeb3bec23d4219dd519508c9e927fb3657d8ff10 /Dockerfile
parentUpdate pyproject.toml to use dependancy groups (diff)
Don't use the deprecated --without dev in Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 454e58d5..438f33bb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,7 +8,7 @@ WORKDIR /app
# Install project dependencies
COPY pyproject.toml poetry.lock ./
-RUN poetry install --without dev
+RUN poetry install --only main
# Set Git SHA environment variable
ARG git_sha="development"