Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/universal/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@
"ghcr.io/devcontainers/features/github-cli:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/copilot-cli:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest"
},
Expand Down
8 changes: 4 additions & 4 deletions src/universal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ The container includes the `zsh` (and Oh My Zsh!) and `fish` shells that you can
You can decide how often you want updates by referencing a [semantic version](https://semver.org/) of each image.
For example:

- `mcr.microsoft.com/devcontainers/universal:4-noble`
- `mcr.microsoft.com/devcontainers/universal:4.1-noble`
- `mcr.microsoft.com/devcontainers/universal:4.1.0-noble`
- `mcr.microsoft.com/devcontainers/universal:5-noble`
- `mcr.microsoft.com/devcontainers/universal:5.1-noble`
- `mcr.microsoft.com/devcontainers/universal:5.1.0-noble`

See [history](history) for information on the contents of each version and [here for a complete list of available tags](https://mcr.microsoft.com/v2/devcontainers/universal/tags/list).

Expand All @@ -47,7 +47,7 @@ Access to the Anaconda repository is covered by the [Anaconda Terms of Service](

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

`mcr.microsoft.com/devcontainers/universal:4.1-linux`
`mcr.microsoft.com/devcontainers/universal:5.1-linux`

Alternatively, you can use the contents of [.devcontainer](.devcontainer) to fully customize your container's contents or to build it for a container host architecture not supported by the image.

Expand Down
2 changes: 1 addition & 1 deletion src/universal/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.0.2",
"version": "5.1.0",
"build": {
"latest": true,
"rootDistro": "debian",
Expand Down
1 change: 1 addition & 0 deletions src/universal/test-project/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ check "go" go version
# Check utilities
checkOSPackages "additional-os-packages" vim xtail software-properties-common
check "gh" gh --version
check "copilot" copilot --version
check "git-lfs" git-lfs --version
check "docker" docker --version
check "kubectl" kubectl version --client
Expand Down