Skip to content

Commit

Permalink
Add missing packages for test dockerfiles (#7236)
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipB committed Mar 28, 2024
1 parent e81d1b7 commit 823746f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy/docker/Dockerfile-cypress
Expand Up @@ -11,7 +11,7 @@ ENV HOME=/tmp/kiali
# install required packages and oc bin
WORKDIR /usr/bin
RUN apt -y update && \
apt install -y tar gzip bash gettext curl && \
apt install -y tar gzip bash gettext curl git && \
apt-get clean && \
curl -Lo ./oc.tar.gz https://mirror.openshift.com/pub/openshift-v4/clients/ocp/stable/openshift-client-linux.tar.gz && \
tar -xf oc.tar.gz && \
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/Dockerfile
Expand Up @@ -7,7 +7,7 @@ ENV HOME=$GOPATH/src/kiali

# install required packages and prepare go dirs
WORKDIR /bin
RUN microdnf install --nodocs tar gzip make which \
RUN microdnf install --nodocs tar gzip make which gettext git \
&& curl -Lo ./oc.tar.gz https://mirror.openshift.com/pub/openshift-v4/clients/ocp/stable/openshift-client-linux.tar.gz \
&& tar -xf oc.tar.gz \
&& rm -f oc.tar.gz \
Expand Down

0 comments on commit 823746f

Please sign in to comment.