Skip to content

Commit e021bbf

Browse files
committed
feat: add ubuntu:questing to support v21
1 parent 15755d6 commit e021bbf

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

docker-bake.hcl

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,26 @@ target "all" {
5050
output = ["type=image"]
5151
}
5252

53+
target "clang-tools" {
54+
matrix = {
55+
tgt = ["21"]
56+
}
57+
name = "${tgt}"
58+
dockerfile = "Dockerfile"
59+
context = "."
60+
args = {
61+
# https://packages.ubuntu.com/search?suite=default&section=all&arch=any&keywords=clang-format-21&searchon=names
62+
BASE_IMAGE="ubuntu:questing"
63+
CLANG_VERSION="${tgt}",
64+
}
65+
tags = [
66+
"${DOCKER_REPO}:${tgt}",
67+
"${GITHUB_REPO}:${tgt}"
68+
]
69+
platforms = ["linux/amd64", "linux/arm64"]
70+
output = ["type=image"]
71+
}
72+
5373
target "clang-tools" {
5474
matrix = {
5575
tgt = ["20"]
@@ -169,7 +189,7 @@ target "clang-tools" {
169189

170190
target "clang-tools" {
171191
matrix = {
172-
tgt = ["16-alpine", "17-alpine", "18-alpine", "19-alpine", "20-alpine"]
192+
tgt = ["16-alpine", "17-alpine", "18-alpine", "19-alpine", "20-alpine", "21-alpine"]
173193
}
174194
name = "${tgt}"
175195
dockerfile = "Dockerfile.alpine"

0 commit comments

Comments
 (0)