don't use null values in the bake definition

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2023-03-27 12:07:47 +02:00
parent 7f11449f35
commit bec5d37e91

View File

@ -1,14 +1,14 @@
variable "GO_VERSION" {
default = null
default = "1.19.7"
}
variable "VERSION" {
default = null
default = ""
}
variable "USE_GLIBC" {
default = null
default = ""
}
variable "STRIP_TARGET" {
default = null
default = ""
}
variable "IMAGE_NAME" {
default = "docker-cli"