From b0c174b29aa98a4d49efddb755e969417bb453c0 Mon Sep 17 00:00:00 2001 From: turtlebasket <32886427+turtlebasket@users.noreply.github.com> Date: Thu, 6 Feb 2025 00:30:17 -0800 Subject: [PATCH] Dockerfile: try --no-root --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 72e6f68..b78df41 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,8 +14,8 @@ RUN poetry config virtualenvs.create false WORKDIR /app COPY pyproject.toml poetry.lock ./ -RUN poetry install +RUN poetry install --no-root COPY . . -RUN poetry install +RUN poetry install --no-root