Update to 0.195.0

This commit is contained in:
Chuck Lantz
2021-09-17 01:08:02 +00:00
parent f64a1f5ac2
commit 3ac50fc843
2 changed files with 8 additions and 5 deletions

View File

@@ -1,5 +1,6 @@
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.194.2/containers/go/.devcontainer/base.Dockerfile # See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.195.0/containers/go/.devcontainer/base.Dockerfile
ARG VARIANT="1" # [Choice] Go version (use -bullseye variants on local arm64/Apple Silicon): 1, 1.16, 1.17, 1-bullseye, 1.16-bullseye, 1.17-bullseye, 1-buster, 1.16-buster, 1.17-buster
ARG VARIANT=1-bullseye
FROM mcr.microsoft.com/vscode/devcontainers/go:0-${VARIANT} FROM mcr.microsoft.com/vscode/devcontainers/go:0-${VARIANT}
# [Choice] Node.js version: lts/*, 16, 14, 12, 10 # [Choice] Node.js version: lts/*, 16, 14, 12, 10

View File

@@ -1,12 +1,14 @@
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at: // For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.194.2/containers/go // https://github.com/microsoft/vscode-dev-containers/tree/v0.195.0/containers/go
{ {
"name": "Go", "name": "Go",
"build": { "build": {
"dockerfile": "Dockerfile", "dockerfile": "Dockerfile",
"args": { "args": {
// Update the VARIANT arg to pick a version of Go: 1, 1.17, 1.16 // Update the VARIANT arg to pick a version of Go: 1, 1.16, 1.17
"VARIANT": "1.16", // Append -bullseye or -buster to pin to an OS version.
// Use -bullseye variants on local arm64/Apple Silicon.
"VARIANT": "1.17-bullseye",
// Options // Options
"NODE_VERSION": "lts/*" "NODE_VERSION": "lts/*"
} }