From 19379c65da2a8883600155b628487642ec0d9c4d Mon Sep 17 00:00:00 2001 From: Sebastian Steger Date: Wed, 20 Aug 2025 09:18:14 +0000 Subject: [PATCH] fix go mod tidy permission issues --- go/.devcontainer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/go/.devcontainer/Dockerfile b/go/.devcontainer/Dockerfile index a1ca4b5..3154f0c 100644 --- a/go/.devcontainer/Dockerfile +++ b/go/.devcontainer/Dockerfile @@ -7,3 +7,4 @@ ARG USER_UID=1000 ARG USER_GID=$USER_UID RUN groupadd --gid $USER_GID $USERNAME && useradd --uid $USER_UID --gid $USER_GID -m $USERNAME USER $USERNAME +