Skip to content

Commit

Permalink
#141 feat: install jq on all images (#142)
Browse files Browse the repository at this point in the history
  • Loading branch information
q0rban authored May 20, 2024
2 parents 3e8c5dc + 6d7176d commit 1a6a65e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/Dockerfile.apk.template
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM {{FROM}}

USER root

RUN apk add --no-cache bash git openssh-client runit
RUN apk add --no-cache bash git openssh-client runit jq

{{DOCKERFILE}}

Expand Down
2 changes: 1 addition & 1 deletion templates/Dockerfile.apt.template
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN echo 'APT::Get::Assume-Yes "true";' > /etc/apt/apt.conf.d/90tugboat && \
apt-get install -y \
git locales sudo openssh-client ca-certificates tar gzip build-essential \
net-tools netcat-openbsd unzip zip bzip2 gnupg curl wget vim runit \
rsync apt-transport-https && \
rsync apt-transport-https jq && \
\
mkdir -p /etc/service && \
\
Expand Down
2 changes: 1 addition & 1 deletion templates/Dockerfile.yum.template
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM {{FROM}}
USER root

RUN yum install -y git sudo openssh-clients ca-certificates net-tools bzip2 \
vim-enhanced nmap-ncat make gcc gcc-c++ rsync wget tar && \
vim-enhanced nmap-ncat make gcc gcc-c++ rsync wget tar jq && \
\
( yum install -y glibc-static || \
yum --enablerepo=powertools install -y glibc-static || \
Expand Down

0 comments on commit 1a6a65e

Please sign in to comment.