Skip to content

Commit

Permalink
ci-builder: fix build (ethereum-optimism#9042)
Browse files Browse the repository at this point in the history
Was broken with ethereum-optimism#8920
due to the new `jq` dependency not being present in the builder image.
Fix by installing `jq` in the builder image.
  • Loading branch information
tynes authored and dshiell committed Jan 22, 2024
1 parent d90d631 commit 06accb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ops/docker/ci-builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ FROM --platform=linux/amd64 ghcr.io/crytic/echidna/echidna:v2.0.4 as echidna-tes

FROM --platform=linux/amd64 debian:bullseye-slim as go-build

RUN apt-get update && apt-get install -y curl ca-certificates
RUN apt-get update && apt-get install -y curl ca-certificates jq

ENV GO_VERSION=1.21.1

Expand Down

0 comments on commit 06accb3

Please sign in to comment.