From e055826068c490c239f6ba68a048f4c8ff0c1d02 Mon Sep 17 00:00:00 2001 From: Deluan Date: Thu, 9 Nov 2023 18:23:44 -0500 Subject: [PATCH] Fix devcontainer for Go 1.21 --- .devcontainer/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 4d8c7140..4fc7a5b7 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -2,7 +2,7 @@ # [Choice] Go version: 1, 1.15, 1.14 ARG VARIANT="1" -FROM mcr.microsoft.com/vscode/devcontainers/go:0-${VARIANT} +FROM mcr.microsoft.com/vscode/devcontainers/go:${VARIANT} # [Option] Install Node.js ARG INSTALL_NODE="true" @@ -17,4 +17,4 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ # RUN go get -x # [Optional] Uncomment this line to install global node packages. -# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g " 2>&1 \ No newline at end of file +# RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && npm install -g " 2>&1