Skip to content

Commit 89cb2ad

Browse files
committed
fix(devcontainer): delete users group from container
in `Dockerfile`, because the `updateRemoteUserUID` setting of the devcontainer does not change the `GID` of the `containerUser` dynamically to the one of the host user if the group exists in the container already microsoft/vscode-remote-release#2402. In our case the `containerUser` is set to `bitbots`, because it automatically uses the last `USER` instruction from the `Dockerfile` and the `remoteUser` inherits from `containerUser`. For reference see: microsoft/vscode-remote-release#1155
1 parent 72c401f commit 89cb2ad

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.devcontainer/Dockerfile

+6-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,12 @@ RUN python3 -m pip install \
8282
# Set zsh as default shell
8383
SHELL ["/bin/zsh", "-c"]
8484

85-
# Create user bitbots with home directory and add to sudo group
86-
RUN useradd -m -U -u "$uid" -G sudo -s /bin/zsh $user \
85+
# Remove the users group, because when it exists on the host system
86+
# the devcontainer will not dynamically update the containerUser GID,
87+
# when the host user is part of the users group.
88+
# Then create a bitbots user with home directory and add allow it to use sudo
89+
RUN groupdel users \
90+
&& useradd -m -U -u "$uid" -G sudo -s /bin/zsh $user \
8791
&& groupmod -g "$gid" $user \
8892
&& echo "$user ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
8993

0 commit comments

Comments
 (0)