We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
variable "DESTDIR" { default = "" } target "default" { output = [DESTDIR] }
$ docker buildx bake --print #1 [internal] load local bake definitions #1 reading docker-bake.hcl 81B / 81B done #1 DONE 0.0s docker-bake.hcl:6 -------------------- 4 | 5 | target "default" { 6 | >>> output = [DESTDIR] 7 | } 8 | -------------------- ERROR: docker-bake.hcl:6,12-13: Unsuitable value type; Unsuitable value: EOF
Done some debugging and seems related to changes in gohcl fork. This error is triggered at
gohcl
buildx/bake/hclparser/gohcl/decode.go
Lines 295 to 305 in 71c7889
As we are using our own decode options for implied types in
buildx/bake/hclparser/hclparser.go
Line 992 in 71c7889
With previous release:
$ docker buildx bake --print #1 [internal] load local bake definitions #1 reading docker-bake.hcl 81B / 81B done #1 DONE 0.0s { "target": { "default": { "context": ".", "dockerfile": "Dockerfile" } } }
The text was updated successfully, but these errors were encountered:
jsternberg
Successfully merging a pull request may close this issue.
Done some debugging and seems related to changes in
gohcl
fork. This error is triggered atbuildx/bake/hclparser/gohcl/decode.go
Lines 295 to 305 in 71c7889
As we are using our own decode options for implied types in
buildx/bake/hclparser/hclparser.go
Line 992 in 71c7889
With previous release:
The text was updated successfully, but these errors were encountered: