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
No known key found for this signature in database
GPG Key ID: 3248E46B6BB8C7F7
1 changed files with 4 additions and 4 deletions

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"