Remove chown

This commit is contained in:
Winston
2025-10-03 12:51:04 +02:00
parent 6e959eadad
commit 5f7e7d4f27

View File

@@ -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"