Skip to content

Commit 9e2b0a8

Browse files
committed
add jq to images
1 parent 948ac40 commit 9e2b0a8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ops/docker/op-stack-go/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ COPY --from=op-wheel-builder /app/op-wheel/bin/op-wheel /usr/local/bin/
123123
CMD ["op-wheel"]
124124

125125
FROM --platform=$TARGETPLATFORM $TARGET_BASE_IMAGE AS op-node-target
126+
RUN apk add --no-cache jq
126127
COPY --from=op-node-builder /app/op-node/bin/op-node /usr/local/bin/
127128
CMD ["op-node"]
128129

@@ -133,18 +134,22 @@ COPY --from=op-program-builder /app/op-program/bin/op-program /usr/local/bin/
133134
ENV OP_CHALLENGER_CANNON_SERVER /usr/local/bin/op-program
134135
# Make the bundled cannon the default cannon executable
135136
COPY --from=cannon-builder /app/cannon/bin/cannon /usr/local/bin/
137+
RUN apk add --no-cache jq
136138
ENV OP_CHALLENGER_CANNON_BIN /usr/local/bin/cannon
137139
CMD ["op-challenger"]
138140

139141
FROM --platform=$TARGETPLATFORM $TARGET_BASE_IMAGE AS op-dispute-mon-target
142+
RUN apk add --no-cache jq
140143
COPY --from=op-dispute-mon-builder /app/op-dispute-mon/bin/op-dispute-mon /usr/local/bin/
141144
CMD ["op-dispute-mon"]
142145

143146
FROM --platform=$TARGETPLATFORM $TARGET_BASE_IMAGE AS op-batcher-target
147+
RUN apk add --no-cache jq
144148
COPY --from=op-batcher-builder /app/op-batcher/bin/op-batcher /usr/local/bin/
145149
CMD ["op-batcher"]
146150

147151
FROM --platform=$TARGETPLATFORM $TARGET_BASE_IMAGE AS op-proposer-target
152+
RUN apk add --no-cache jq
148153
COPY --from=op-proposer-builder /app/op-proposer/bin/op-proposer /usr/local/bin/
149154
CMD ["op-proposer"]
150155

@@ -157,5 +162,6 @@ COPY --from=da-server-builder /app/op-alt-da/bin/da-server /usr/local/bin/
157162
CMD ["da-server"]
158163

159164
FROM --platform=$TARGETPLATFORM $TARGET_BASE_IMAGE AS op-supervisor-target
165+
RUN apk add --no-cache jq
160166
COPY --from=op-supervisor-builder /app/op-supervisor/bin/op-supervisor /usr/local/bin/
161167
CMD ["op-supervisor"]

0 commit comments

Comments
 (0)