mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-06 00:35:53 -05:00
8be103ff82
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
39 lines
549 B
HCL
39 lines
549 B
HCL
group "default" {
|
|
targets = ["db", "app"]
|
|
}
|
|
|
|
group "release" {
|
|
targets = ["db", "app-plus"]
|
|
}
|
|
|
|
target "db" {
|
|
context = "./test"
|
|
tags = ["docker.io/tonistiigi/db"]
|
|
}
|
|
|
|
target "app" {
|
|
context = "./test"
|
|
dockerfile = "Dockerfile-bake"
|
|
args = {
|
|
name = "foo"
|
|
}
|
|
tags = [
|
|
"localhost:5000/name/app:latest",
|
|
"localhost:5000/name/app:1.0.0"
|
|
]
|
|
}
|
|
|
|
target "cross" {
|
|
platforms = [
|
|
"linux/amd64",
|
|
"linux/arm64",
|
|
"linux/386"
|
|
]
|
|
}
|
|
|
|
target "app-plus" {
|
|
inherits = ["app", "cross"]
|
|
args = {
|
|
IAMPLUS = "true"
|
|
}
|
|
}
|