From 1eb10dfc906cf1e0860aab8263c065909dce4546 Mon Sep 17 00:00:00 2001 From: x42en Date: Thu, 19 Mar 2026 09:30:38 +0100 Subject: [PATCH] fix(ci): Correct poetry options --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0a1e7a5..90646ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN pip install poetry COPY pyproject.toml poetry.lock README.md ./ RUN poetry config virtualenvs.create false \ - && poetry install --no-dev --only main + && poetry install --only main FROM python:3.12-slim