Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 7637b76

Browse files
committed
Add missing bake definition file
1 parent 120be44 commit 7637b76

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

docker-bake.hcl

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
target "docker-metadata-action" {}
2+
3+
group "default" {
4+
targets = ["image-local"]
5+
}
6+
7+
target "image" {
8+
inherits = ["docker-metadata-action"]
9+
}
10+
11+
target "image-local" {
12+
inherits = ["image"]
13+
output = ["type=docker"]
14+
}
15+
16+
target "image-all" {
17+
inherits = ["image"]
18+
platforms = [
19+
"linux/amd64",
20+
"linux/arm64",
21+
"linux/arm/v7"
22+
]
23+
}

0 commit comments

Comments
 (0)