Files
ethereum-rpc-docker/firehose-mainnet/Dockerfile
2023-07-20 15:54:54 +02:00

7 lines
376 B
Docker

FROM debian
RUN apt-get update && apt-get install -y wget
RUN wget -O- https://github.com/streamingfast/firehose-ethereum/releases/download/v1.4.4/firehose-ethereum_linux_x86_64.tar.gz | tar xvz -C /usr/bin
RUN wget https://github.com/streamingfast/go-ethereum/releases/download/geth-v1.12.0-fh2.2/geth_linux -O /usr/bin/geth
RUN chmod +x /usr/bin/geth
ENTRYPOINT ["fireeth"]