Skip to content

Commit edb64dd

Browse files
committedMay 27, 2021
fix example bundle dockerfile
pre-fix this would copy all yaml files in `./manifests` into the _file_ `/manifests` and it would only keep the last file's contents. Adding that trailing slash creates the `/manifests` directory and copies all files as expected. Signed-off-by: Josh Gwosdz <[email protected]>
1 parent 92e5523 commit edb64dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎docs/design/operator-bundle.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ LABEL operators.operatorframework.io.bundle.package.v1=test-operator
106106
LABEL operators.operatorframework.io.bundle.channels.v1=beta,stable
107107
LABEL operators.operatorframework.io.bundle.channel.default.v1=stable
108108
109-
ADD test/*.yaml /manifests
109+
ADD test/*.yaml /manifests/
110110
ADD test/metadata/annotations.yaml /metadata/annotations.yaml
111111
```
112112

0 commit comments

Comments
 (0)
Please sign in to comment.