From edba24db4db24be3e61cfc42eec10958af01ac4d Mon Sep 17 00:00:00 2001 From: Cees-Jan Kiewiet Date: Sat, 28 Sep 2024 20:58:50 +0200 Subject: [PATCH] [ReactPHP] Don't verbosely chown --- images/reactphp/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/reactphp/Dockerfile b/images/reactphp/Dockerfile index 60745f8..04cac2a 100644 --- a/images/reactphp/Dockerfile +++ b/images/reactphp/Dockerfile @@ -18,7 +18,7 @@ COPY ./ /opt/app/ COPY --from=install-dependencies /opt/app/vendor/ /opt/app/vendor/ USER root -RUN chown app:app /opt/app/ -Rfv +RUN chown app:app /opt/app/ -Rf USER app ENTRYPOINT ["php", "/opt/app/app.php"]