diff --git a/Dockerfile b/Dockerfile index ad3be5a..7c5d465 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,14 @@ FROM ubuntu:22.04 WORKDIR /geth-app RUN apt-get update && apt-get install -y wget unzip -RUN wget "https://github.com/bnb-chain/bsc/releases/download/v1.2.12/geth_linux" +RUN wget "https://github.com/bnb-chain/bsc/releases/download/v1.2.15/geth_linux" RUN mv geth_linux geth RUN chmod -v u+x geth -RUN wget "https://github.com/bnb-chain/bsc/releases/download/v1.2.12/mainnet.zip" +RUN wget "https://github.com/bnb-chain/bsc/releases/download/v1.2.15/mainnet.zip" RUN unzip mainnet.zip RUN mv config.toml config-mainnet.toml RUN mv genesis.json genesis-mainnet.json -RUN wget "https://github.com/bnb-chain/bsc/releases/download/v1.2.12/testnet.zip" +RUN wget "https://github.com/bnb-chain/bsc/releases/download/v1.2.15/testnet.zip" RUN unzip testnet.zip RUN mv config.toml config-testnet.toml RUN mv genesis.json genesis-testnet.json