16 lines
307 B
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"]
|
|
} |