mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 02:42:27 +00:00
12 lines
304 B
Docker
12 lines
304 B
Docker
# Local L1 nodes are NOT built from source
|
|
FROM ethereum/client-go:v1.13.4 as builder
|
|
|
|
RUN apk add --no-cache jq
|
|
|
|
# Reuse entrypoint for mev-commit chain
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
COPY ./local-l1/genesis.json /genesis.json
|
|
|
|
ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]
|