From 1869b263f5606ba2a705f99dc52ad398abcc5394 Mon Sep 17 00:00:00 2001 From: Christian Ege Date: Fri, 5 Jul 2024 14:15:55 +0000 Subject: [PATCH] build: use the latest Go version in the Devcontainer --- .devcontainer/devcontainer.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 53d4242..3fea99a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,7 +3,7 @@ { "name": "Go", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile - "image": "ghcr.io/graugans/golang:latest" + "image": "mcr.microsoft.com/devcontainers/go:1.22", // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, @@ -23,9 +23,7 @@ "golang.go" ] } - }, - - + } // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root" }