Skip to content

Commit

Permalink
Adds support for Jekyll with Ruby 3.3 (#928)
Browse files Browse the repository at this point in the history
  • Loading branch information
samruddhikhandale committed Jan 22, 2024
1 parent 0f8c7f5 commit e8c0b65
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 16 deletions.
3 changes: 1 addition & 2 deletions src/jekyll/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# [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
ARG VARIANT=3.2-bookworm
ARG VARIANT=3.3-bookworm
FROM mcr.microsoft.com/devcontainers/ruby:${VARIANT}

USER root
Expand Down
21 changes: 7 additions & 14 deletions src/jekyll/manifest.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,33 @@
{
"version": "2.0.6",
"variants": [
"3.2-bookworm",
"3.2-bullseye",
"3.2-buster"
"3.3-bookworm",
"3.3-bullseye"
],
"build": {
"latest": "3.2-bookworm",
"latest": "3.3-bookworm",
"parent": "ruby",
"rootDistro": "debian",
"architectures": {
"3.2-bookworm": [
"3.3-bookworm": [
"linux/amd64",
"linux/arm64"
],
"3.2-bullseye": [
"3.3-bullseye": [
"linux/amd64",
"linux/arm64"
],
"3.2-buster": [
"linux/amd64"
]
},
"tags": [
"jekyll:${VERSION}-${VARIANT}"
],
"variantTags": {
"3.2-bookworm": [
"3.3-bookworm": [
"jekyll:${VERSION}",
"jekyll:${VERSION}-bookworm"
],
"3.2-bullseye": [
"3.3-bullseye": [
"jekyll:${VERSION}-bullseye"
],
"3.2-buster": [
"jekyll:${VERSION}-buster"
]
}
},
Expand Down

0 comments on commit e8c0b65

Please sign in to comment.