From dfb650f50e040ff5b913859d205b649771c6d046 Mon Sep 17 00:00:00 2001 From: Sathish Ramani Date: Wed, 14 Apr 2021 18:47:24 +0800 Subject: [PATCH] Update bsc docker to 1.0.7 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 75af615..fcaee4d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM debian:stable-slim -RUN apt-get update -y && apt-get install wget curl -y -RUN wget --no-check-certificate https://github.com/binance-chain/bsc/releases/download/v1.0.6/geth_linux && chmod 744 geth_linux && mv geth_linux /usr/local/bin/geth +RUN apt-get update -y && apt-get install wget curl procps net-tools htop -y +RUN wget --no-check-certificate https://github.com/binance-chain/bsc/releases/download/v1.0.7/geth_linux && chmod 744 geth_linux && mv geth_linux /usr/local/bin/geth ENTRYPOINT ["geth"]