From 5f7e7d4f275789838e9728f99217815212ff4122 Mon Sep 17 00:00:00 2001 From: Winston <44872771+winston-yallow@users.noreply.github.com> Date: Fri, 3 Oct 2025 12:51:04 +0200 Subject: [PATCH] Remove chown --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 20d5f4f..c50cb4f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ FROM debian:bookworm-slim RUN groupadd --system --gid 999 nonroot \ && useradd --system --gid 999 --uid 999 --create-home nonroot -COPY --from=builder --chown=python:python /python /python +COPY --from=builder /python /python COPY --from=builder --chown=nonroot:nonroot /app /app ENV PATH="/app/.venv/bin:$PATH"