From 8a999bcc6e3c7e2924456d5c6624a7612b9e3062 Mon Sep 17 00:00:00 2001 From: aserrador Date: Sun, 8 Mar 2026 00:38:20 -0500 Subject: [PATCH] fix: use --no-root to skip package installation in Docker --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c148c14..a5d927b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /app RUN pip install poetry COPY pyproject.toml poetry.lock README.md ./ -RUN poetry install --without dev --no-interaction +RUN poetry install --without dev --no-interaction --no-root COPY src/ ./src/ COPY .env.example .env