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

chore: Update Dockerfile to use consensus-v32-eigenda consensus root #57

Merged
merged 2 commits into from
Dec 18, 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
4 changes: 2 additions & 2 deletions .github/workflows/docker-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
uses: docker/build-push-action@v5
with:
platform: linux/amd64
target: nitro-node-dev
target: nitro-node
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
uses: docker/build-push-action@v5
with:
platform: linux/arm64/v8
target: nitro-node-dev
target: nitro-node
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ WORKDIR /workspace/machines
# Download WAVM machines
# no fetch since these replay artifacts are only used for backwards compatibility for Arbitrum One and Nova
COPY ./scripts/download-machine.sh .
COPY ./scripts/download-machine-eigenda.sh .
#RUN ./download-machine.sh consensus-v1-rc1 0xbb9d58e9527566138b682f3a207c0976d5359837f6e330f4017434cca983ff41
#RUN ./download-machine.sh consensus-v2.1 0x9d68e40c47e3b87a8a7e6368cc52915720a6484bb2f47ceabad7e573e3a11232
#RUN ./download-machine.sh consensus-v3 0x53c288a0ca7100c0f2db8ab19508763a51c7fd1be125d376d940a65378acaee7
Expand All @@ -228,8 +229,7 @@ COPY ./scripts/download-machine.sh .
# RUN ./download-machine.sh consensus-v30 0xb0de9cb89e4d944ae6023a3b62276e54804c242fd8c4c2d8e6cc4450f5fa8b1b && true
# RUN ./download-machine.sh consensus-v31 0x260f5fa5c3176a856893642e149cf128b5a8de9f828afec8d11184415dd8dc69
RUN ./download-machine.sh consensus-v32 0x184884e1eb9fefdc158f6c8ac912bb183bf3cf83f0090317e0bc4ac5860baa39
# TODO: Insert eigenda machine here once we're post audit and have a final artifact to push
# RUN ./download-machine.sh consensus-eigenda-v32 0x...0
RUN ./download-machine-eigenda.sh consensus-eigenda-v32 0x951009942c00b5bd0abec233174fe33fadf7cd5013d17b042f9b28b3b00b469c

FROM golang:1.21.10-bookworm AS node-builder
WORKDIR /workspace
Expand Down
Loading