Consolidate Dockerfile non-root user to vscode

Previously, we had differently named default users in the
containers.
This commit is contained in:
Roland Reichwein 2026-04-27 16:01:50 +02:00
parent fbd738db69
commit 396f25de4b
5 changed files with 5 additions and 5 deletions

View File

@ -24,7 +24,7 @@ RUN dpkg --add-architecture armhf && \
&& rm -rf /var/lib/apt/lists/*
# Create non-root user with stable UID/GID
ARG USERNAME=devuser
ARG USERNAME=vscode
ARG USER_UID=1000
ARG USER_GID=1000

View File

@ -24,7 +24,7 @@ RUN dpkg --add-architecture i386 && \
&& rm -rf /var/lib/apt/lists/*
# Create non-root user with stable UID/GID
ARG USERNAME=devuser
ARG USERNAME=vscode
ARG USER_UID=1000
ARG USER_GID=1000

View File

@ -49,7 +49,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
# Create non-root user with stable UID/GID
ARG USERNAME=devuser
ARG USERNAME=vscode
ARG USER_UID=1000
ARG USER_GID=1000

View File

@ -24,7 +24,7 @@ RUN dpkg --add-architecture riscv64 && \
&& rm -rf /var/lib/apt/lists/*
# Create non-root user with stable UID/GID
ARG USERNAME=devuser
ARG USERNAME=vscode
ARG USER_UID=1000
ARG USER_GID=1000

View File

@ -24,7 +24,7 @@ RUN dpkg --add-architecture s390x && \
&& rm -rf /var/lib/apt/lists/*
# Create non-root user with stable UID/GID
ARG USERNAME=devuser
ARG USERNAME=vscode
ARG USER_UID=1000
ARG USER_GID=1000