From 1e8bb0521c22ec1e706de901996e7bedff72d7ce Mon Sep 17 00:00:00 2001 From: Pallav Vasa Date: Thu, 22 May 2025 16:10:49 +0000 Subject: [PATCH] Revert "feat: add devuser to group appuser 1003" This reverts commit d15950f86cf207b482b138d68657b3d97c62da99. --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index 26c6dc9..452c4b9 100644 --- a/Containerfile +++ b/Containerfile @@ -19,8 +19,8 @@ RUN pacman -Sy --noconfirm && \ # Create user/groups as per your script, with -l to avoid system user quirks RUN groupadd -g $DEV_GID $DEV_USER && \ - groupadd -g 1002 secproc && groupadd -g 1003 appdata && \ - useradd -l -ms /bin/fish -G secproc,appdata -u $DEV_UID -g $DEV_GID $DEV_USER + groupadd -g 1002 secproc && \ + useradd -l -ms /bin/fish -G secproc -u $DEV_UID -g $DEV_GID $DEV_USER # ──────────────────────── # Stage 2: Workspace Image