Commit 0e14df6 1 parent f75ef39 commit 0e14df6 Copy full SHA for 0e14df6
File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,12 @@ FROM quay.io/openshifttest/python:3.9
3
3
LABEL vendor="Red Hat Inc." maintainer="OCP QE Team"
4
4
5
5
RUN curl -sSL https://mirror.openshift.com/pub/openshift-v4/clients/ocp/stable/openshift-client-linux-amd64-rhel8.tar.gz | tar -xvzf - &&\
6
- mv kubectl /bin
6
+ mv kubectl /bin
7
7
8
8
RUN apt-get update && apt-get install -y gettext-base uuid-runtime jq openssh-client sshpass && \
9
9
ln -s /bin/bash /usr/bin/bash && /usr/local/bin/python -m pip install --upgrade pip && pip install virtualenv jq
10
+
11
+ RUN curl -sSL $(curl -sSL https://api.github.com/repos/openshift/rosa/releases/latest | jq -r ".assets[] | select(.name == \" rosa_Linux_x86_64.tar.gz\" ) | .browser_download_url" ) | tar xvzf - &&\
12
+ mv rosa /bin && chmod 777 /bin/rosa
13
+
14
+ RUN curl -sSL $(curl -sSL https://api.github.com/repos/openshift-online/ocm-cli/releases/latest | jq -r ".assets[] | select(.name == \" ocm-linux-amd64\" ) | .browser_download_url" ) --output /bin/ocm && chmod 777 /bin/ocm
You can’t perform that action at this time.
0 commit comments