don't use null values in the bake definition

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
(cherry picked from commit bec5d37e91)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
CrazyMax 2023-03-27 12:07:47 +02:00 committed by Sebastiaan van Stijn
parent f381e08425
commit f6643207a2
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
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"