Commit 247225b3 authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

ci-builder: fix build (#9042)

Was broken with https://github.com/ethereum-optimism/optimism/pull/8920
due to the new `jq` dependency not being present in the builder image.
Fix by installing `jq` in the builder image.
parent 10ab0984
...@@ -38,7 +38,7 @@ FROM --platform=linux/amd64 ghcr.io/crytic/echidna/echidna:v2.0.4 as echidna-tes ...@@ -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 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 ENV GO_VERSION=1.21.1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment