2023-01-30 21:05:48 +00:00
|
|
|
FROM ghcr.io/foundry-rs/foundry
|
2022-08-11 22:17:55 +00:00
|
|
|
|
|
|
|
RUN apk update ; apk add --no-cache --allow-untrusted ca-certificates curl bash git jq
|
|
|
|
RUN apk add --no-cache --upgrade grep
|
|
|
|
WORKDIR /root
|
|
|
|
|
|
|
|
ARG GENESIS_FILE_PATH=genesis.json
|
|
|
|
|
|
|
|
COPY stateful ./stateful
|
|
|
|
COPY start-private-network.sh .
|
|
|
|
COPY deploy-local-network.sh .
|
|
|
|
COPY $GENESIS_FILE_PATH ./genesis.json
|
|
|
|
# TODO: figure out if this works for aarm64
|
2022-08-23 22:02:38 +00:00
|
|
|
COPY --from=cerc/go-ethereum:local /usr/local/bin/geth /bin/geth
|
2022-08-11 22:17:55 +00:00
|
|
|
RUN chmod +x /bin/geth
|
|
|
|
|
|
|
|
EXPOSE 8545
|
|
|
|
EXPOSE 8546
|
|
|
|
ENTRYPOINT ["./start-private-network.sh"]
|