From 26a7d8c007da2ac4818501a4e5e82e78f3f77c78 Mon Sep 17 00:00:00 2001 From: Vedran Kasalica Date: Thu, 6 Feb 2025 11:06:27 +0100 Subject: [PATCH] Update `--no-dev` to `--without dev` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3caed09..3310d0b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ ENV PYTHONPATH=/app/src # Install the dependencies using Poetry without creating a virtual environment RUN poetry config virtualenvs.create false \ - && poetry install --no-dev --no-interaction --no-ansi + && poetry install --without dev --no-interaction --no-ansi # Expose the port where the FastAPI app will run EXPOSE 8000