We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
output
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
docker-language-server/internal/bake/hcl/parser/schema.go
Lines 199 to 202 in bd9f041
output is not just a list of strings. It seems like it can also be an object.
target "_common" { args = { GO_VERSION = "1.23" BUILDKIT_CONTEXT_KEEP_GIT_DIR = 1 } } target "lint" { inherits = ["_common"] dockerfile = "./dockerfiles/lint.Dockerfile" output = [{ type = "cacheonly" }] } target "docs" { inherits = ["_common"] dockerfile = "./dockerfiles/docs.Dockerfile" output = ["./docs/reference"] }
{ "context": ".", "dockerfile": "./dockerfiles/docs.Dockerfile", "args": { "BUILDKIT_CONTEXT_KEEP_GIT_DIR": "1", "GO_VERSION": "1.23" }, "output": [ { "dest": "./docs/reference", "type": "local" } ] }
{ "context": ".", "dockerfile": "./dockerfiles/lint.Dockerfile", "args": { "BUILDKIT_CONTEXT_KEEP_GIT_DIR": "1", "GO_VERSION": "1.23" }, "output": [ { "type": "cacheonly" } ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
docker-language-server/internal/bake/hcl/parser/schema.go
Lines 199 to 202 in bd9f041
output
is not just a list of strings. It seems like it can also be an object.The text was updated successfully, but these errors were encountered: