Correct no-cache attribute to be a boolean

The documentation is incorrect because no-cache needs to be a boolean.

Signed-off-by: Remy Suen <remy.suen@docker.com>
This commit is contained in:
Remy Suen
2025-10-16 17:06:43 -04:00
parent 734034375e
commit 7898cee6b5
+1 -1
View File
@@ -883,7 +883,7 @@ This is the same as the `--no-cache` flag for `docker build`.
```hcl
target "default" {
no-cache = 1
no-cache = true
}
```