mirror of https://github.com/docker/cli.git
don't use null values in the bake definition
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
7f11449f35
commit
bec5d37e91
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue