Skip to content

Commit e8c0b65

Browse files
Adds support for Jekyll with Ruby 3.3 (devcontainers#928)
1 parent 0f8c7f5 commit e8c0b65

File tree

2 files changed

+8
-16
lines changed

2 files changed

+8
-16
lines changed

src/jekyll/.devcontainer/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# [Choice] Debian OS version (use 3.2-bookworm, or 3.2-bullseye on local arm64/Apple Silicon): 3.2-bookworm, 3.2-bullseye, 3.2-buster
2-
ARG VARIANT=3.2-bookworm
1+
ARG VARIANT=3.3-bookworm
32
FROM mcr.microsoft.com/devcontainers/ruby:${VARIANT}
43

54
USER root

src/jekyll/manifest.json

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,33 @@
11
{
22
"version": "2.0.6",
33
"variants": [
4-
"3.2-bookworm",
5-
"3.2-bullseye",
6-
"3.2-buster"
4+
"3.3-bookworm",
5+
"3.3-bullseye"
76
],
87
"build": {
9-
"latest": "3.2-bookworm",
8+
"latest": "3.3-bookworm",
109
"parent": "ruby",
1110
"rootDistro": "debian",
1211
"architectures": {
13-
"3.2-bookworm": [
12+
"3.3-bookworm": [
1413
"linux/amd64",
1514
"linux/arm64"
1615
],
17-
"3.2-bullseye": [
16+
"3.3-bullseye": [
1817
"linux/amd64",
1918
"linux/arm64"
20-
],
21-
"3.2-buster": [
22-
"linux/amd64"
2319
]
2420
},
2521
"tags": [
2622
"jekyll:${VERSION}-${VARIANT}"
2723
],
2824
"variantTags": {
29-
"3.2-bookworm": [
25+
"3.3-bookworm": [
3026
"jekyll:${VERSION}",
3127
"jekyll:${VERSION}-bookworm"
3228
],
33-
"3.2-bullseye": [
29+
"3.3-bullseye": [
3430
"jekyll:${VERSION}-bullseye"
35-
],
36-
"3.2-buster": [
37-
"jekyll:${VERSION}-buster"
3831
]
3932
}
4033
},

0 commit comments

Comments
 (0)