From 182b333a32536fe7f3f77dba042ef4705b17eab1 Mon Sep 17 00:00:00 2001 From: Sebastian Steger Date: Wed, 20 Aug 2025 15:46:12 +0200 Subject: [PATCH] cleanup dockerfile --- go/.devcontainer/Dockerfile | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/go/.devcontainer/Dockerfile b/go/.devcontainer/Dockerfile index 206f58f..a1ca4b5 100644 --- a/go/.devcontainer/Dockerfile +++ b/go/.devcontainer/Dockerfile @@ -2,20 +2,8 @@ FROM golang:1.25 RUN apt-get update && apt-get install -y build-essential -#RUN go install github.com/go-delve/delve/cmd/dlv@latest -#RUN go install github.com/cweill/gotests/gotests@v1.6.0 -#RUN go install golang.org/x/tools/gopls@latest -#RUN go install golang.org/x/tools/cmd/goimports@latest -#RUN go install honnef.co/go/tools/cmd/staticcheck@latest - -# allow all users to add go packages in that container -#RUN mkdir -p /go/pkg && chmod -R a+rwx /go/pkg -#RUN chmod -R a+rwx /go/pkg/mod /go/pkg/sumdb -#RUN chmod -R a+rwx /go/pkg/mod/github.com - ARG USERNAME=developer 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 -