mirror of https://github.com/docker/cli.git
Merge pull request #4122 from crazy-max/fix-bake
don't use null values in the bake definition
This commit is contained in:
commit
21653863b1
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue