22 lines
390 B
HCL
22 lines
390 B
HCL
target "docker-metadata-action" {}
|
|
|
|
target "build" {
|
|
inherits = ["docker-metadata-action"]
|
|
context = "./"
|
|
platforms = [
|
|
"linux/386",
|
|
"linux/amd64",
|
|
"linux/arm/v5",
|
|
"linux/arm/v7",
|
|
"linux/arm64/v8",
|
|
"linux/mips",
|
|
"linux/mips64",
|
|
"linux/mips64le",
|
|
"linux/mipsle",
|
|
"linux/ppc64",
|
|
"linux/ppc64le",
|
|
"linux/riscv64",
|
|
"linux/s390x",
|
|
]
|
|
}
|