Skip to content

Commit

Permalink
[runner] Add jq binary to all runners
Browse files Browse the repository at this point in the history
  • Loading branch information
startx-lab committed Dec 22, 2021
1 parent da2366f commit 51b22d8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion GitlabRunner/ansible/Dockerfile
Expand Up @@ -33,7 +33,8 @@ RUN dnf install -yq --nogpgcheck yum-utils && \
curl \
npm nodejs \
openssh-clients \
sshpass && \
sshpass \
jq && \
pip install yq openshift ansible-lint && \
dnf install -yq --nogpgcheck 'dnf-command(config-manager)' && \
dnf config-manager --enable --add-repo https://releases.ansible.com/ansible-runner/ansible-runner.el7.repo && \
Expand Down
3 changes: 2 additions & 1 deletion GitlabRunner/apache/Dockerfile
Expand Up @@ -30,7 +30,8 @@ RUN dnf install -yq --nogpgcheck yum-utils && \
rsync \
openssh-clients \
sshpass
python3-pip && \
python3-pip \
jq && \
pip install yq && \
package-cleanup --problems && \
package-cleanup --orphans && \
Expand Down
3 changes: 2 additions & 1 deletion GitlabRunner/bash/Dockerfile
Expand Up @@ -35,7 +35,8 @@ RUN dnf install -yq --nogpgcheck yum-utils && \
ShellCheck \
git \
bats
python3-pip && \
python3-pip \
jq && \
pip install yq && \
gem install --silent mdl && \
package-cleanup --problems && \
Expand Down
3 changes: 2 additions & 1 deletion GitlabRunner/nodejs/Dockerfile
Expand Up @@ -30,7 +30,8 @@ RUN dnf install -yq --nogpgcheck yum-utils && \
rsync \
openssh-clients \
sshpass
python3-pip && \
python3-pip \
jq && \
pip install yq && \
package-cleanup --problems && \
package-cleanup --orphans && \
Expand Down
3 changes: 2 additions & 1 deletion GitlabRunner/oc/Dockerfile
Expand Up @@ -23,7 +23,8 @@ USER root
COPY sx /tmp/
RUN dnf install -yq --nogpgcheck \
jq \
python3-pip && \
python3-pip \
jq && \
pip install yq && \
cd /tmp && \
wget -q https://mirror.openshift.com/pub/openshift-v4/clients/ocp/$SX_OC_VERSION/openshift-client-linux-$SX_OC_VERSION.tar.gz && \
Expand Down

0 comments on commit 51b22d8

Please sign in to comment.