- 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.
This commit is contained in:
Guillaume "B.B." Van Hemmen 2025-05-19 12:55:56 +02:00
parent f777a7197a
commit 59791e36bb

View file

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