diff --git a/images/cli/Dockerfile.rhel b/images/cli/Dockerfile.rhel index 25fd2d9973..7b11401993 100644 --- a/images/cli/Dockerfile.rhel +++ b/images/cli/Dockerfile.rhel @@ -3,7 +3,7 @@ WORKDIR /go/src/github.com/openshift/oc COPY . . RUN make build --warn-undefined-variables -FROM registry.svc.ci.openshift.org/ocp/4.2:base +FROM registry.svc.ci.openshift.org/ocp/4.6:base COPY --from=builder /go/src/github.com/openshift/oc/oc /usr/bin/ RUN for i in kubectl openshift-deploy openshift-docker-build openshift-sti-build openshift-git-clone openshift-manage-dockerfile openshift-extract-image-content openshift-recycle; do ln -sf /usr/bin/oc /usr/bin/$i; done LABEL io.k8s.display-name="OpenShift Client" \