From 546b63eb7b30f2bf4e24f4928f7fbad0dedd7407 Mon Sep 17 00:00:00 2001 From: aserrador Date: Sun, 8 Mar 2026 00:21:10 -0500 Subject: [PATCH] fix: use correct Poetry flag --without dev --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 26f9cb2..c9f3576 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app RUN pip install poetry COPY pyproject.toml poetry.lock ./ -RUN poetry install --no-dev --no-interaction +RUN poetry install --without dev --no-interaction COPY src/ ./src/ COPY .env.example .env