From 94a73dfbafd06ae2799e254ce1625a29b9a910f9 Mon Sep 17 00:00:00 2001 From: Harry Dam Date: Tue, 25 Jun 2024 12:57:42 -0600 Subject: [PATCH] upgrade bsc to 1.4.10 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7e4ec88..a68cff3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM debian:stable-slim RUN apt-get update -y && apt-get install wget curl procps net-tools htop -y -RUN wget --no-check-certificate https://github.com/bnb-chain/bsc/releases/download/v1.4.8/geth_linux && chmod 744 geth_linux && mv geth_linux /usr/local/bin/geth +RUN wget --no-check-certificate https://github.com/bnb-chain/bsc/releases/download/v1.4.10/geth_linux && chmod 744 geth_linux && mv geth_linux /usr/local/bin/geth ENTRYPOINT ["geth"]