Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

proofs-tools: Use asterisc version from kona release #12587

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,8 @@ target "proofs-tools" {
dockerfile = "./ops/docker/proofs-tools/Dockerfile"
context = "."
args = {
CHALLENGER_VERSION="e7085e537b4a0c95d41b048cfcfdd7ad24808337"
CHALLENGER_VERSION="de795648c5d920f1925ca2cc8bea7c480feefa58"
KONA_VERSION="kona-client-v0.1.0-alpha.5"
ASTERISC_VERSION="v1.0.3-alpha1"
}
target="proofs-tools"
platforms = split(",", PLATFORMS)
Expand Down
5 changes: 1 addition & 4 deletions ops/docker/proofs-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@ ARG GIT_DATE

ARG CHALLENGER_VERSION
ARG KONA_VERSION
ARG ASTERISC_VERSION

FROM --platform=$BUILDPLATFORM us-docker.pkg.dev/oplabs-tools-artifacts/images/op-challenger:$CHALLENGER_VERSION AS challenger
FROM --platform=$BUILDPLATFORM ghcr.io/anton-rs/kona/kona-fpp-asterisc:$KONA_VERSION AS kona
FROM --platform=$BUILDPLATFORM ghcr.io/ethereum-optimism/asterisc/asterisc:$ASTERISC_VERSION AS asterisc

FROM --platform=$BUILDPLATFORM ubuntu:22.04 AS proofs-tools
RUN apt-get update && apt-get install -y --no-install-recommends musl openssl ca-certificates
Expand All @@ -19,8 +17,7 @@ ENV OP_CHALLENGER_CANNON_SERVER=/usr/local/bin/op-program

COPY --from=kona /kona-host /usr/local/bin/
ENV OP_CHALLENGER_ASTERISC_KONA_SERVER=/usr/local/bin/kona-host

COPY --from=asterisc /usr/local/bin/asterisc /usr/local/bin/
COPY --from=kona /asterisc /usr/local/bin/
ENV OP_CHALLENGER_ASTERISC_BIN=/usr/local/bin/asterisc

CMD /usr/local/bin/op-challenger