mirror of
https://git.flexiblyrigid.au/actions/bake-action.git
synced 2025-12-06 07:48:05 +08: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"]
|
|
}
|