From 437dede2bb55da4bccf078d714551f22b2c9b579 Mon Sep 17 00:00:00 2001 From: William Lam Date: Fri, 22 Sep 2023 15:11:23 -0700 Subject: [PATCH] fix: Use correct FROM image in PowerCLI template Closes: #1106 Signed-off-by: William Lam --- examples/CONTRIBUTING.md | 2 +- examples/knative/templates/Dockerfile.pcli | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/CONTRIBUTING.md b/examples/CONTRIBUTING.md index 6e84e69d..55283b34 100644 --- a/examples/CONTRIBUTING.md +++ b/examples/CONTRIBUTING.md @@ -53,7 +53,7 @@ export KO_DOCKER_REPO=ghcr.io// Now you can build and push your new version of the example using `ko build` ```bash -ko build . --image-label org.opencontainers.image.source="//" --tags --tags latest -B +ko build . --image-label org.opencontainers.image.source="${KO_DOCKER_REPO}" --tags ${KO_TAG} --tags latest -B ``` ### Notes diff --git a/examples/knative/templates/Dockerfile.pcli b/examples/knative/templates/Dockerfile.pcli index 30c49e0e..0abea058 100644 --- a/examples/knative/templates/Dockerfile.pcli +++ b/examples/knative/templates/Dockerfile.pcli @@ -1,4 +1,4 @@ -FROM ghcr.io/dolfolife/vcenter-event-broker-appliance/ce-ps-base:1.5 +FROM ghcr.io/vmware-samples/vcenter-event-broker-appliance/ce-ps-base:1.5 LABEL maintainer="vCenter Event Broker Appliance Community" LABEL org.opencontainers.image.source="https://github.com/vmware-samples/vcenter-event-broker-appliance"