Skip to content

Commit

Permalink
add wget to Dockerfile_interop
Browse files Browse the repository at this point in the history
  • Loading branch information
omrirh committed Dec 30, 2024
1 parent a2d693a commit bb701ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ods_ci/build/Dockerfile_interop
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ COPY ods_ci/test-variables.yml.example ${ODS_VENV}/ods_ci/test-variables.yml
RUN dnf install epel-release -y &&\
dnf -y update &&\
dnf install -y jq git unzip chromium chromedriver httpd-tools gcc \
python3 python3-devel python3-distro python-pip python${PYTHON_VERSION} python${PYTHON_VERSION}-devel &&\
python3 python3-devel python3-distro python-pip python${PYTHON_VERSION} python${PYTHON_VERSION}-devel wget && \
dnf clean all && rm -rf /var/cache/yum &&\
curl --proto "=https" -L https://github.com/mikefarah/yq/releases/download/v4.34.1/yq_linux_amd64 -o /usr/bin/yq &&\
chmod +x /usr/bin/yq &&\
Expand All @@ -35,7 +35,7 @@ RUN dnf install epel-release -y &&\
rm -rf ${HOME}/oc_client.tar.gz && rm /usr/local/bin/README.md && chmod 755 /usr/local/bin/oc && oc version --client && \
curl --proto "=https" -L https://github.com/openshift-online/ocm-cli/releases/download/v0.1.62/ocm-linux-amd64 -o ${HOME}/ocm && \
mv ${HOME}/ocm /usr/local/bin/ && chmod 755 /usr/local/bin/ocm && ocm version && \
wget https://github.com/fullstorydev/grpcurl/releases/download/v1.8.7/grpcurl_1.8.7_linux_x86_64.tar.gz -q && \
wget -sL https://github.com/fullstorydev/grpcurl/releases/download/v1.8.7/grpcurl_1.8.7_linux_x86_64.tar.gz -o grpcurl_1.8.7_linux_x86_64.tar.gz && \
tar xzf grpcurl_1.8.7_linux_x86_64.tar.gz && \
rm -rf grpcurl_1.8.7_linux_x86_64.tar.gz && \
mv grpcurl /usr/bin/grpcurl && \
Expand Down

0 comments on commit bb701ea

Please sign in to comment.