Skip to content

Commit 76bae63

Browse files
committed
bake it
1 parent 1f771fd commit 76bae63

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: docker-bake.hcl

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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+
]
21+
}

0 commit comments

Comments
 (0)