From 84fa3268398c22f59505407c475089e8e5324032 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 7 Dec 2025 18:08:30 +0000 Subject: [PATCH] Remove redundant --chown flag from COPY in Dockerfile The assets are copied while running as www-data user, so the --chown flag is redundant. This makes it consistent with the frankenphp version. Co-authored-by: jbtronics <5410681+jbtronics@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a44e4f55..3f4b5783 100644 --- a/Dockerfile +++ b/Dockerfile @@ -177,7 +177,7 @@ RUN composer install -a --no-dev && \ composer clear-cache # Copy pre-built assets from the assets stage -COPY --from=assets --chown=www-data:www-data /build/public/build ./public/build +COPY --from=assets /build/public/build ./public/build # Use docker env to output logs to stdout ENV APP_ENV=docker