five9-softphone/docker-bake.hcl

16 lines
307 B
HCL

variable "TAG" {
default = "latest"
}
variable "REPO" {
default = "registry.mortons.site"
}
group "default" {
targets = ["five9-softphone"]
}
target "five9-softphone" {
dockerfile = "Dockerfile"
tags = ["${REPO}/five9-softphone:${TAG}"]
platforms = ["linux/amd64", "linux/arm64"]
}