From 897d67638fda48e1ed3af8374248f1fc12c96a81 Mon Sep 17 00:00:00 2001 From: Ryan Phillips Date: Mon, 13 Nov 2023 12:54:33 -0600 Subject: [PATCH] add oc to image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 59cfa9fb..96aa037a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY . ./ RUN make FROM registry.ci.openshift.org/ocp/4.14:base-rhel9 -RUN dnf -y update && dnf install -y binutils file go podman && dnf clean all +RUN dnf -y update && dnf install -y binutils file go podman oc && dnf clean all RUN curl --fail --retry 3 -LJO https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp/latest-4.14/opm-linux.tar.gz && \ tar -xzf opm-linux.tar.gz && \ mv ./opm /usr/local/bin/ && \