Merge pull request #4122 from crazy-max/fix-bake

don't use null values in the bake definition
This commit is contained in:
Sebastiaan van Stijn 2023-03-27 16:10:16 +02:00 committed by GitHub
commit 21653863b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

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