Skip to content

Commit 092256d

Browse files
authored
Merge pull request #1433 from itoffshore/jq
Add jq to docker images
2 parents ac0f5c8 + 560e846 commit 092256d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ARG STEPGID=1000
2828

2929
RUN apk update \
3030
&& apk upgrade \
31-
&& apk add --no-cache bash curl tzdata \
31+
&& apk add --no-cache bash curl tzdata jq \
3232
&& addgroup -g ${STEPGID} step \
3333
&& adduser -D -u ${STEPUID} -G step step \
3434
&& chown step:step /home/step

docker/Dockerfile.debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ARG STEPGID=1000
2929

3030
RUN apt-get update \
3131
&& apt-get upgrade -y \
32-
&& apt-get install -y --no-install-recommends curl \
32+
&& apt-get install -y --no-install-recommends curl jq \
3333
&& addgroup --gid ${STEPGID} step \
3434
&& adduser --disabled-password --uid ${STEPUID} --gid ${STEPGID} step \
3535
&& chown step:step /home/step

0 commit comments

Comments
 (0)