From 59791e36bb3a077a38d6a7741f4ed989724961bd Mon Sep 17 00:00:00 2001 From: "Guillaume B.B. Van Hemmen" <GuillaumeHemmen@noreply.git.van-hemmen.com> Date: Mon, 19 May 2025 12:55:56 +0200 Subject: [PATCH] #4 - Change Dockerfile to run as root user Switched the user from UID 1000 to root (UID 0) in the Dockerfile. This change allows for operations requiring elevated privileges during container execution. Ensure any downstream implications of running as root are understood and addressed. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2242136..64e7e13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,7 +39,7 @@ COPY LICENSE /LICENSE RUN chmod +x /bin/build.sh # Drop root privileges (UID 1000 exists in the base image) -USER 1000 +USER 0 #----------------------------------------------------------------------------- # Runtime entrypoint