features/test/python/scenarios.json

51 lines
1.4 KiB
JSON
Raw Normal View History

{
2022-09-08 23:30:57 +03:00
"install_jupyterlab_2": {
"image": "mcr.microsoft.com/vscode/devcontainers/python:latest",
"remoteUser": "vscode",
"features": {
"common-utils": {
"username": "vscode"
},
"python": {
"version": "none",
"installJupyterlab": true,
"configureJupyterlabAllowOrigin": "*"
}
}
},
"install_additional_python": {
"image": "ubuntu:focal",
"features": {
"python": {
"version": "3.10.5",
"additionalVersions": "3.8,3.9.13"
}
}
},
"install_jupyterlab": {
"image": "mcr.microsoft.com/vscode/devcontainers/base:focal",
"remoteUser": "vscode",
"features": {
"common-utils": {
"username": "vscode"
},
"python": {
2022-09-08 23:30:57 +03:00
"version": "latest",
"installJupyterlab": true,
"configureJupyterlabAllowOrigin": "*"
}
}
},
"install_os_provided_python": {
"image": "mcr.microsoft.com/devcontainers/base:0-bullseye",
"features": {
"node": "latest",
2022-09-08 23:30:57 +03:00
"python": {
"version": "os-provided",
"installJupyterlab": true,
"configureJupyterlabAllowOrigin": "*"
}
}
}
2022-09-08 23:30:57 +03:00
}