From 93654d84e4ffc1597e2059ae1a74029570594fff Mon Sep 17 00:00:00 2001 From: Roger Gonzalez Date: Thu, 27 Mar 2025 20:30:08 -0300 Subject: [PATCH] Prevent Poetry from installing packages globally --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b3d4d28..3793a3f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN pip install --no-cache-dir poetry RUN poetry config virtualenvs.create false COPY pyproject.toml poetry.lock ./ -RUN poetry install --only main --no-interaction --no-ansi +RUN poetry install --only main --no-interaction --no-ansi --no-root FROM python:3.10-alpine