From 41f5edb595bd040cb4a6a2cca5048546d85dde03 Mon Sep 17 00:00:00 2001 From: David Hurta Date: Thu, 11 Dec 2025 19:48:34 +0100 Subject: [PATCH] hack/build-image.sh: Update Dockerfile reference The file named `Dockerfile` was removed in the [1] commit as the file was unused. Update the outdated reference to point at the sole existing Dockerfile file in the repository. [1]: https://github.com/openshift/cluster-version-operator/commit/2f996d4c9993192be4c0d9fff3da0450b193f404 --- hack/build-image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/build-image.sh b/hack/build-image.sh index 7f8acbcb8d..ef57611748 100755 --- a/hack/build-image.sh +++ b/hack/build-image.sh @@ -22,4 +22,4 @@ if [ -z ${VERSION_OVERRIDE+a} ]; then fi set -x -podman build -t "cluster-version-operator:${VERSION_OVERRIDE}" -f Dockerfile --no-cache +podman build -t "cluster-version-operator:${VERSION_OVERRIDE}" -f Dockerfile.rhel --no-cache