From 68ece96a0af067d266be2a0af58b356862c3e721 Mon Sep 17 00:00:00 2001 From: jnfrati Date: Sat, 5 Sep 2026 22:38:07 +0200 Subject: [PATCH] [client] Keep rootless executables root-owned --- client/Dockerfile-rootless | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Dockerfile-rootless b/client/Dockerfile-rootless index 541f398c0..e6a381ee0 100644 --- a/client/Dockerfile-rootless +++ b/client/Dockerfile-rootless @@ -32,5 +32,5 @@ ENV \ ENTRYPOINT [ "/usr/local/bin/netbird-entrypoint.sh" ] ARG TARGETPLATFORM ARG NETBIRD_BINARY=$TARGETPLATFORM/netbird -COPY --chown=1000:0 --chmod=0750 client/netbird-entrypoint.sh /usr/local/bin/netbird-entrypoint.sh -COPY --chown=1000:0 --chmod=0750 "${NETBIRD_BINARY}" /usr/local/bin/netbird +COPY --chown=0:0 --chmod=0750 client/netbird-entrypoint.sh /usr/local/bin/netbird-entrypoint.sh +COPY --chown=0:0 --chmod=0750 "${NETBIRD_BINARY}" /usr/local/bin/netbird