From edb64dd549048453c3ff6d1bada35508346ed9b1 Mon Sep 17 00:00:00 2001 From: Josh Gwosdz <jgwosdz@redhat.com> Date: Thu, 27 May 2021 15:32:15 +0200 Subject: [PATCH] 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 <jgwosdz@redhat.com> --- docs/design/operator-bundle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design/operator-bundle.md b/docs/design/operator-bundle.md index edf9d6282..fb5eed170 100644 --- a/docs/design/operator-bundle.md +++ b/docs/design/operator-bundle.md @@ -106,7 +106,7 @@ LABEL operators.operatorframework.io.bundle.package.v1=test-operator LABEL operators.operatorframework.io.bundle.channels.v1=beta,stable LABEL operators.operatorframework.io.bundle.channel.default.v1=stable -ADD test/*.yaml /manifests +ADD test/*.yaml /manifests/ ADD test/metadata/annotations.yaml /metadata/annotations.yaml ```