We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 988eff0 commit 8254acfCopy full SHA for 8254acf
operator-pipeline-images/Dockerfile-ppc64le
@@ -41,10 +41,9 @@ RUN dnf update -y && \
41
COPY operator-pipeline-images/config/krb5.conf /etc/krb5.conf
42
43
# Install opm CLI for ppc64le
44
-RUN wget https://mirror.openshift.com/pub/openshift-v4/ppc64le/clients/ocp/4.6.22/opm-linux-4.6.22.tar.gz && \
45
- tar xvf opm-linux-4.6.22.tar.gz && \
46
- chmod +x opm && \
47
- mv opm /usr/local/bin/opm
+RUN curl -LO https://github.com/mayurwaghmode/operator-registry/releases/download/v1.19.5/linux-ppc64le-opm && \
+ chmod +x linux-ppc64le-opm && \
+ mv linux-ppc64le-opm /usr/local/bin/opm
48
49
RUN useradd -ms /bin/bash -u "${USER_UID}" user
50
0 commit comments