Files
bake-action/test/go/docker-bake.hcl
2023-03-28 10:00:28 +02:00

18 lines
242 B
HCL

variable "DESTDIR" {
default = "/tmp/bake-build"
}
group "default" {
targets = ["binary"]
}
target "binary" {
target = "binary"
output = [DESTDIR]
}
target "image" {
target = "image"
tags = ["localhost:5000/name/app:latest"]
}