fix: add comma between groups

This commit is contained in:
Pallav Vasa 2025-05-21 15:13:20 +00:00
parent d15950f86c
commit 9577707dd5

View File

@ -20,7 +20,7 @@ RUN pacman -Sy --noconfirm && \
# Create user/groups as per your script, with -l to avoid system user quirks # Create user/groups as per your script, with -l to avoid system user quirks
RUN groupadd -g $DEV_GID $DEV_USER && \ RUN groupadd -g $DEV_GID $DEV_USER && \
groupadd -g 1002 secproc && groupadd -g 1003 appdata && \ groupadd -g 1002 secproc && groupadd -g 1003 appdata && \
useradd -l -ms /bin/fish -G secproc appdata -u $DEV_UID -g $DEV_GID $DEV_USER useradd -l -ms /bin/fish -G secproc,appdata -u $DEV_UID -g $DEV_GID $DEV_USER
# ──────────────────────── # ────────────────────────
# Stage 2: Workspace Image # Stage 2: Workspace Image