Skip to content

Commit

Permalink
Copy evm-node from custom image
Browse files Browse the repository at this point in the history
  • Loading branch information
igorsereda committed May 30, 2024
1 parent 643ac86 commit 05e55fd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build/etherlink/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,17 @@ ARG PACKAGE
ARG CI_COMMIT_SHA
RUN make build-operator PACKAGE=${PACKAGE} CI_COMMIT_SHA=${CI_COMMIT_SHA}

FROM ztepler/tezos-fabridge-bins:latest AS evm-node

FROM alpine:3.15 AS etherlink
RUN apk --no-cache add binutils gcc gmp libgmpxx hidapi libc-dev libev libffi sudo sqlite sqlite-libs sqlite-dev
ARG OCTEZ_PROTO
COPY --from=octez /usr/local/bin/octez-smart-rollup-node-${OCTEZ_PROTO} /usr/bin/octez-smart-rollup-node
COPY --from=octez /usr/local/bin/octez-client /usr/bin/octez-client
COPY --from=octez /usr/local/bin/octez-evm-node /usr/bin/octez-evm-node
COPY --from=builder /build/bin/wasm_2_0_0/ /root/wasm_2_0_0/
COPY --from=octez /usr/local/bin/octez-node /usr/bin/octez-node
COPY --from=octez /usr/share/zcash-params/ /root/.zcash-params/
COPY --from=evm-node /usr/bin/octez-evm-node /usr/bin/octez-evm-node
COPY --from=builder /build/bin/wasm_2_0_0/ /root/wasm_2_0_0/
ARG PACKAGE
COPY --from=builder /build/bin/${PACKAGE}_installer.wasm /root/kernel.wasm
COPY ./build/etherlink/entrypoint.sh .
Expand Down

0 comments on commit 05e55fd

Please sign in to comment.