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 17:18:38 +02:00
committed by Sebastiaan van Stijn
parent f381e08425
commit f6643207a2
+4 -4
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"