From f4d368450ba06370ce13ae9380aa41232d307fc0 Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Fri, 28 Aug 2020 10:02:05 -0400 Subject: [PATCH] cli-artifacts: install python3 for downloads-deployment This is used by the downloads-deployment serve.py script: https://github.com/openshift/console-operator/pull/463 --- images/cli-artifacts/Dockerfile.rhel | 1 + 1 file changed, 1 insertion(+) diff --git a/images/cli-artifacts/Dockerfile.rhel b/images/cli-artifacts/Dockerfile.rhel index d9cf3e996b..c97d407826 100644 --- a/images/cli-artifacts/Dockerfile.rhel +++ b/images/cli-artifacts/Dockerfile.rhel @@ -7,6 +7,7 @@ RUN yum install -y --setopt=skip_missing_names_on_install=False gpgme-devel liba RUN make cross-build --warn-undefined-variables FROM registry.svc.ci.openshift.org/ocp/4.2:cli +RUN yum install -y python3 && yum clean all COPY --from=builder /go/src/github.com/openshift/oc/_output/bin/darwin_amd64/oc /usr/share/openshift/mac/oc COPY --from=builder /go/src/github.com/openshift/oc/_output/bin/windows_amd64/oc.exe /usr/share/openshift/windows/oc.exe COPY --from=builder /go/src/github.com/openshift/oc/_output/bin/linux_amd64/oc /usr/share/openshift/linux_amd64/oc