fix: use correct Poetry flag --without dev

This commit is contained in:
2026-03-08 00:21:10 -05:00
parent 3431a37119
commit 546b63eb7b

View File

@@ -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