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
2 changes: 1 addition & 1 deletion 5/alpine3.22/Dockerfile → 5/alpine3.23/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
2 changes: 1 addition & 1 deletion 6/alpine3.22/Dockerfile → 6/alpine3.23/Dockerfile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
8 changes: 4 additions & 4 deletions versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
],
"from": "node:22-bookworm-slim"
},
"alpine3.22": {
"alpine3.23": {
"arches": [
"amd64",
"arm64v8"
],
"from": "node:22-alpine3.22"
"from": "node:22-alpine3.23"
}
}
},
Expand All @@ -44,12 +44,12 @@
],
"from": "node:20-bookworm-slim"
},
"alpine3.22": {
"alpine3.23": {
"arches": [
"amd64",
"arm64v8"
],
"from": "node:20-alpine3.22"
"from": "node:20-alpine3.23"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ for version in "${versions[@]}"; do
# each of these should be a single distro version unless something *really* exceptional happens
# if there is more than one, they should be in descending order
linux: [ "bookworm" ],
linuxmusl: [ "alpine3.22" ],
linuxmusl: [ "alpine3.23" ],
}[.key][]
| .value = {
arches: (
Expand Down Expand Up @@ -98,7 +98,7 @@ for version in "${versions[@]}"; do
$doc
| with_entries(
# add image FROM for Dockerfile template and parent arch lookup in generate-stackbrew-library.sh
# e.g. "node:22-alpine3.22" or "node:22-trixie-slim"
# e.g. "node:22-alpine3.23" or "node:22-trixie-slim"
.value.from = "node:\($nodeVersion)-\(.key)\(
if .key | startswith("alpine") then "" else "-slim" end
)"
Expand Down