docs: fix typo in snippet

The reference to `docker.Copy` does not exist and should be `docker.#Copy` instead. This also leads to a confusing error message (possibly related to #493) as it isn't found while CUE is compiled, and instead results in the following runtime error:

```
[✗] actions.deps                                                                                                                                  2.1s
9:16PM FTL failed to execute plan: task failed: actions.deps._dag."2"._exec: invalid FS at path "actions.deps._dag.\"2\"._exec.input": FS is not set
```

Signed-off-by: Ben Gesoff <ben@gesoff.uk>
This commit is contained in:
Ben Gesoff 2022-03-13 21:32:46 +00:00 committed by Ben Gesoff
parent aacabb1393
commit e0d2b5cd3b

View File

@ -7,7 +7,7 @@ dagger.#Plan & {
}
actions: {
copy: docker.Copy & {
copy: docker.#Copy & {
contents: client.filesystem.".".read.contents
}
// ...