Update definition to latest in master

This commit is contained in:
Chuck Lantz
2021-03-08 23:04:32 +00:00
committed by GitHub
parent 02ee8d2dca
commit d65c9f4a2d
2 changed files with 18 additions and 6 deletions

View File

@@ -1,12 +1,17 @@
// 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.134.0/containers/python-3
// https://github.com/microsoft/vscode-dev-containers/tree/master/containers/python-3
{
"name": "Python 3",
"build": {
"dockerfile": "Dockerfile",
"context": "..",
// Update 'VARIANT' to pick a Python version: 3, 3.6, 3.7, 3.8
"args": { "VARIANT": "3" }
"args": {
// Update 'VARIANT' to pick a Python version: 3, 3.6, 3.7, 3.8, 3.9
"VARIANT": "3",
// Options
"INSTALL_NODE": "true",
"NODE_VERSION": "lts/*"
}
},
// Set *default* container specific settings.json values on container create.