Skip to content

Commit 9026462

Browse files
Merge branch 'main' of https://github.com/devcontainers/images into samruddhikhandale/dual-tag
2 parents 0c621bb + 4e1e3c6 commit 9026462

File tree

9 files changed

+15
-11
lines changed

9 files changed

+15
-11
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
"ghcr.io/devcontainers/features/docker-in-docker:1": {},
2020
"ghcr.io/devcontainers/features/azure-cli:1": {}
2121
},
22-
"postCreateCommand": "npm install -g @devcontainers/cli"
22+
"postCreateCommand": "npm install -g @devcontainers/cli@0.14.1"
2323
}

.github/actions/smoke-test/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55

66
export DOCKER_BUILDKIT=1
77
echo "(*) Installing @devcontainer/cli"
8-
npm install -g @devcontainers/cli
8+
npm install -g @devcontainers/cli@0.14.1
99

1010
echo "(*) Building image - ${IMAGE}"
1111
id_label="test-container=${IMAGE}"

.github/workflows/push-again.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# Setup build CLI
6565
cd "$GITHUB_WORKSPACE/ref"
6666
yarn install
67-
npm install -g @devcontainers/cli
67+
npm install -g @devcontainers/cli@0.14.1
6868
6969
# Go to the release, symlink the build tool from ref since this is the version for the workflow
7070
cd "$GITHUB_WORKSPACE/release"

.github/workflows/push-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
5454
# Build and push dev images
5555
yarn install
56-
npm install -g @devcontainers/cli
56+
npm install -g @devcontainers/cli@0.14.1
5757
GIT_BRANCH=$(echo "${{ github.ref }}" | grep -oP 'refs/(heads|tags)/\K(.+)')
5858
if [ "$GIT_BRANCH" == "" ]; then
5959
GIT_BRANCH=main

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
5858
# Build and push images
5959
yarn install
60-
npm install -g @devcontainers/cli
60+
npm install -g @devcontainers/cli@0.14.1
6161
build/vscdc push --page ${{ matrix.page }} \
6262
--pageTotal ${{ matrix.page-total }} \
6363
--release ${{ steps.get_tag_name.outputs.tag }} \

src/universal/.devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"additionalVersions": "8.0.16",
3434
"installComposer": "true"
3535
},
36-
"ghcr.io/devcontainers/features/anaconda:1": {
36+
"ghcr.io/devcontainers/features/conda:1": {
3737
"version": "latest"
3838
},
3939
"ghcr.io/devcontainers/features/ruby:1": {
@@ -80,7 +80,7 @@
8080
"ghcr.io/devcontainers/features/python",
8181
"./local-features/machine-learning-packages",
8282
"ghcr.io/devcontainers/features/php",
83-
"ghcr.io/devcontainers/features/anaconda",
83+
"ghcr.io/devcontainers/features/conda",
8484
"ghcr.io/devcontainers/features/ruby",
8585
"ghcr.io/devcontainers/features/java",
8686
"ghcr.io/devcontainers/features/sshd",

src/universal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Access to the Anaconda repository is covered by the [Anaconda Terms of Service](
4747

4848
While the image itself works unmodified, you can also directly reference pre-built versions of `Dockerfile` by using the `image` property in `.devcontainer.json` or updating the `FROM` statement in your own `Dockerfile` to:
4949

50-
`mcr.microsoft.com/devcontainers/universal:1-linux`
50+
`mcr.microsoft.com/devcontainers/universal:2-linux`
5151

5252
Alternatively, you can use the contents of the `Dockerfile` to fully customize your container's contents or to build it for a container host architecture not supported by the image.
5353

src/universal/manifest.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,10 @@
151151
},
152152
"Docker (Moby) CLI & Engine": {
153153
"cgIgnore": true
154+
},
155+
"conda": {
156+
"cgIgnore": true,
157+
"path": "/opt/conda/bin"
154158
}
155159
},
156160
"languages": {
@@ -197,7 +201,7 @@
197201
"Jupyter Lab": {
198202
"cgIgnore": true,
199203
"versionCommand": "jupyter-lab --version",
200-
"path": "/usr/local/conda/bin/jupyter-lab",
204+
"path": "/home/codespace/.local/bin/jupyter-lab",
201205
"downloadUrl": "https://jupyter.org/"
202206
}
203207
}

src/universal/test-project/test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ echo $(echo "php versions" && ls -a /usr/local/php)
9494
# Hugo
9595
check "hugo" hugo version
9696

97-
# Anaconda
98-
check "Anaconda" conda --version
97+
# conda
98+
check "conda" conda --version
9999

100100
# Go
101101
check "go" go version

0 commit comments

Comments
 (0)