Skip to content

Commit 27f997f

Browse files
committed
Add jq in the e2e tests image
Signed-off-by: David Kwon <[email protected]>
1 parent f83e703 commit 27f997f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.ci/oci.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ SHELL ["/bin/bash", "-c"]
2020
# Temporary workaround since mirror.centos.org is down and can be replaced with vault.centos.org
2121
RUN sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo && sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo && sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo
2222

23-
RUN yum install --assumeyes -d1 python3-pip nodejs gettext && \
23+
RUN yum install --assumeyes -d1 python3-pip nodejs gettext jq && \
2424
pip3 install --upgrade pip && \
2525
pip3 install --ignore-installed --upgrade setuptools && \
26-
# Install yq and jq
27-
pip3 install yq jq && \
26+
# Install yq
27+
pip3 install yq && \
2828
# Install kubectl
2929
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && \
3030
chmod +x ./kubectl && \

0 commit comments

Comments
 (0)