Skip to content

Commit d7af46b

Browse files
authored
[universal] - Image version major change (#397)
* [universal] - Image version major change * Fixing failed test
1 parent 0013b6c commit d7af46b

3 files changed

Lines changed: 2 additions & 13 deletions

File tree

src/universal/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Default Linux Universal",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/universal:2-linux"
6+
"image": "mcr.microsoft.com/devcontainers/universal:5-linux"
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
// "features": {},

src/universal/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "universal",
3-
"version": "1.1.2",
3+
"version": "2.0.0",
44
"name": "Default Linux Universal",
55
"description": "Use or extend the new Ubuntu-based default, large, multi-language universal container for GitHub Codespaces.",
66
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/universal",

test/universal/test.sh

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,6 @@ echo $(echo "python versions" && ls -a /usr/local/python)
3434
echo $(echo "pip list" pip list)
3535

3636
# Check Python packages
37-
check "numpy" python -c "import numpy; print(numpy.__version__)"
38-
check "pandas" python -c "import pandas; print(pandas.__version__)"
39-
check "scipy" python -c "import scipy; print(scipy.__version__)"
40-
check "matplotlib" python -c "import matplotlib; print(matplotlib.__version__)"
41-
check "seaborn" python -c "import seaborn; print(seaborn.__version__)"
42-
check "scikit-learn" python -c "import sklearn; print(sklearn.__version__)"
43-
check "torch" python -c "import torch; print(torch.__version__)"
4437
check "requests" python -c "import requests; print(requests.__version__)"
4538

4639
# Check JupyterLab
@@ -116,10 +109,6 @@ check "zsh" zsh --version
116109
# Check env variable
117110
check "RAILS_DEVELOPMENT_HOSTS is set correctly" echo $RAILS_DEVELOPMENT_HOSTS | grep ".githubpreview.dev,.preview.app.github.dev,.app.github.dev"
118111

119-
# Check that we can run a puppeteer node app.
120-
yarn
121-
check "run-puppeteer" node puppeteer.js
122-
123112
# Check Oryx
124113
check "oryx" oryx --version
125114

0 commit comments

Comments
 (0)