Skip to content

Commit 2e0ce30

Browse files
authored
Fix for dev container images build failure (#1746)
* Fix for dev container images build failures. * Review comments implementation
1 parent c818a99 commit 2e0ce30

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

src/ruby/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
| *Categories* | Core, Languages |
1010
| *Image type* | Dockerfile |
1111
| *Published images* | mcr.microsoft.com/devcontainers/ruby |
12-
| *Available image variants* | 4 / 4-trixie, 4-bookworm, 4-bullseye, 3.4 / 3.4-trixie, 3.3 / 3.3-trixie, 3.2 / 3.2-trixie, 3-bookworm, 3.4-bookworm, 3.3-bookworm, 3.2-bookworm, 3-bullseye, 3.4-bullseye ([full list](https://mcr.microsoft.com/v2/devcontainers/ruby/tags/list)) |
12+
| *Available image variants* | 4 / 4-trixie, 4-bookworm, 3.4 / 3.4-trixie, 3.3 / 3.3-trixie, 3.2 / 3.2-trixie, 3-bookworm, 3.4-bookworm, 3.3-bookworm, 3.2-bookworm, 3-bullseye, 3.4-bullseye ([full list](https://mcr.microsoft.com/v2/devcontainers/ruby/tags/list)) |
1313
| *Published image architecture(s)* | x86-64, arm64/aarch64 for `trixie`, `bookworm` , and `bullseye` variants |
1414
| *Container host OS support* | Linux, macOS, Windows |
1515
| *Container OS* | Debian |
@@ -22,7 +22,7 @@ See **[history](history)** for information on the contents of published images.
2222
You can 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 one of the following. An example `Dockerfile` is included in this repository.
2323

2424
- `mcr.microsoft.com/devcontainers/ruby` (latest)
25-
- `mcr.microsoft.com/devcontainers/ruby:4` (or `4-trixie`, `4-bookworm`, `4-bullseye` to pin to an OS version)
25+
- `mcr.microsoft.com/devcontainers/ruby:4` (or `4-trixie`, `4-bookworm` to pin to an OS version)
2626
- `mcr.microsoft.com/devcontainers/ruby:3.4` (or `3.4-trixie`, `3.4-bookworm`, `3.4-bullseye` to pin to an OS version)
2727
- `mcr.microsoft.com/devcontainers/ruby:3.3` (or `3.3-trixie`, `3.3-bookworm`, `3.3-bullseye` to pin to an OS version)
2828
- `mcr.microsoft.com/devcontainers/ruby:3.2` (or `3.2-trixie`, `3.2-bookworm`, `3.2-bullseye` to pin to an OS version)

src/ruby/manifest.json

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"3.4-bookworm",
1010
"3.3-bookworm",
1111
"3.2-bookworm",
12-
"4.0-bullseye",
1312
"3.4-bullseye",
1413
"3.3-bullseye",
1514
"3.2-bullseye"
@@ -26,10 +25,6 @@
2625
"linux/amd64",
2726
"linux/arm64"
2827
],
29-
"4.0-bullseye": [
30-
"linux/amd64",
31-
"linux/arm64"
32-
],
3328
"3.4-trixie": [
3429
"linux/amd64",
3530
"linux/arm64"
@@ -81,10 +76,6 @@
8176
"ruby:${VERSION}-4-bookworm",
8277
"ruby:${VERSION}-bookworm"
8378
],
84-
"4.0-bullseye": [
85-
"ruby:${VERSION}-4-bullseye",
86-
"ruby:${VERSION}-bullseye"
87-
],
8879
"3.4-trixie": [
8980
"ruby:${VERSION}-3.4",
9081
"ruby:${VERSION}-3.4-trixie"
@@ -115,6 +106,7 @@
115106
"3.2-bullseye": [
116107
"ruby:${VERSION}-3.2-bullseye"
117108
]
109+
}
118110
},
119111
"dependencies": {
120112
"image": "ruby:${VARIANT}",
@@ -149,4 +141,3 @@
149141
}
150142
}
151143
}
152-
}

0 commit comments

Comments
 (0)