diff options
author | 2023-01-16 20:49:24 +0000 | |
---|---|---|
committer | 2023-02-27 23:57:52 +0000 | |
commit | d4340fdc02c456c5e523f938a725030f585cb03a (patch) | |
tree | aeb3bec23d4219dd519508c9e927fb3657d8ff10 | |
parent | Update pyproject.toml to use dependancy groups (diff) |
Don't use the deprecated --without dev in Dockerfile
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |