This commit is contained in:
Samruddhi Khandale 2022-09-08 22:08:41 +00:00
parent 7e974111f1
commit fdaf4868fb
3 changed files with 24 additions and 4 deletions

View file

@ -0,0 +1,11 @@
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
check "jupyter lab version" jupyter lab --version
# Report result
reportResults

View file

@ -9,7 +9,6 @@ check "python3 is installed" python3 --version
check "python is installed" python --version
check "pip is installed" pip --version
check "pip is installed" pip3 --version
check "jupyter lab version" jupyter lab --version
check "node is installed" node --version

View file

@ -36,15 +36,25 @@
}
}
},
"install_os_provided_python": {
"image": "mcr.microsoft.com/devcontainers/base:0-bullseye",
"install_jupyterlab_os_provided": {
"image": "mcr.microsoft.com/vscode/devcontainers/base:focal",
"remoteUser": "vscode",
"features": {
"node": "latest",
"common-utils": {
"username": "vscode"
},
"python": {
"version": "os-provided",
"installJupyterlab": true,
"configureJupyterlabAllowOrigin": "*"
}
}
},
"install_os_provided_python": {
"image": "mcr.microsoft.com/devcontainers/base:0-bullseye",
"features": {
"node": "latest",
"python": "os-provided"
}
}
}