From ecf60cfb5df21738d8e3c41ff7467e79880234c4 Mon Sep 17 00:00:00 2001 From: l-nmch Date: Sun, 26 Oct 2025 01:13:05 +0200 Subject: [PATCH] fix(build): Added --no-root --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9524cf6..b2978d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ COPY pyproject.toml / RUN poetry config virtualenvs.create false && \ poetry lock && \ - poetry install --no-interaction --no-ansi + poetry install --no-interaction --no-ansi --no-root FROM python:3.11-slim