15 lines
311 B
HCL
15 lines
311 B
HCL
variable "REG" {
|
|
default = "rg.nl-ams.scw.cloud/public.serguzim.net"
|
|
}
|
|
variable "REPO" {
|
|
default = "emgauwa/core"
|
|
}
|
|
variable "TAG" {
|
|
default = "latest"
|
|
}
|
|
|
|
target "default" {
|
|
output = ["type=docker"]
|
|
dockerfile = "./Dockerfile"
|
|
tags = ["${REG}/${REPO}:latest", "${REG}/${REPO}:${TAG}"]
|
|
}
|