Skip to content

Commit

Permalink
batcher and proposer
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaytonNorthey92 committed Aug 1, 2024
1 parent c724747 commit 754f2e0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion op-node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@ WORKDIR /optimism

COPY . /optimism

RUN make op-node VERSION="$VERSION" GOOS=$TARGETOS GOARCH=$TARGETARCH
RUN VERSION="$VERSION" GOOS=$TARGETOS GOARCH=$TARGETARCH make op-node op-batcher op-proposer

FROM alpine:3.20@sha256:b89d9c93e9ed3597455c90a0b88a8bbb5cb7188438f70953fede212a0c4394e0

COPY --from=builder /optimism/op-node/bin/op-node /bin/op-node

COPY --from=builder /optimism/op-batcher/bin/op-batcher /bin/op-batcher

COPY --from=builder /optimism/op-proposer/bin/op-proposer /bin/op-proposer

CMD ['op-node']

0 comments on commit 754f2e0

Please sign in to comment.