Skip to content

Commit

Permalink
upgrade geth to 1.3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
yukonet committed Apr 18, 2024
1 parent 27ee10e commit b2f31eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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.3.12/geth_linux"
RUN wget "https://github.com/bnb-chain/bsc/releases/download/v1.3.13/geth_linux"
RUN mv geth_linux geth
RUN chmod -v u+x geth
RUN wget "https://github.com/bnb-chain/bsc/releases/download/v1.3.12/mainnet.zip"
RUN wget "https://github.com/bnb-chain/bsc/releases/download/v1.3.13/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.3.12/testnet.zip"
RUN wget "https://github.com/bnb-chain/bsc/releases/download/v1.3.13/testnet.zip"
RUN unzip testnet.zip
RUN mv config.toml config-testnet.toml
RUN mv genesis.json genesis-testnet.json
Expand Down

0 comments on commit b2f31eb

Please sign in to comment.