mirror of
https://github.com/docker/bake-action.git
synced 2025-12-30 17:51:19 +01:00
18 lines
242 B
HCL
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"]
|
|
}
|