Update dev container to use Go 1.23 and customizations object (#3228)

Signed-off-by: reillymc <reilly@mackenzie-cree.net>
This commit is contained in:
Reilly MacKenzie-Cree
2024-09-02 12:22:32 +10:00
committed by GitHub
parent 4c87a39242
commit 5baab4af77
+6 -2
View File
@@ -4,7 +4,7 @@
"dockerfile": "Dockerfile", "dockerfile": "Dockerfile",
"args": { "args": {
// Update the VARIANT arg to pick a version of Go: 1, 1.15, 1.14 // Update the VARIANT arg to pick a version of Go: 1, 1.15, 1.14
"VARIANT": "1.22", "VARIANT": "1.23",
// Options // Options
"INSTALL_NODE": "true", "INSTALL_NODE": "true",
"NODE_VERSION": "v20" "NODE_VERSION": "v20"
@@ -18,6 +18,8 @@
"--volume=${localWorkspaceFolder}:/workspaces/${localWorkspaceFolderBasename}:Z" "--volume=${localWorkspaceFolder}:/workspaces/${localWorkspaceFolderBasename}:Z"
], ],
// Set *default* container specific settings.json values on container create. // Set *default* container specific settings.json values on container create.
"customizations": {
"vscode": {
"settings": { "settings": {
"terminal.integrated.shell.linux": "/bin/bash", "terminal.integrated.shell.linux": "/bin/bash",
"go.useGoProxyToCheckForToolUpdates": false, "go.useGoProxyToCheckForToolUpdates": false,
@@ -44,7 +46,9 @@
"golang.Go", "golang.Go",
"esbenp.prettier-vscode", "esbenp.prettier-vscode",
"tamasfe.even-better-toml" "tamasfe.even-better-toml"
], ]
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally. // Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [ "forwardPorts": [
4533, 4533,