From 9832c681b2e15a9fc0683b28949fdb74a9f41053 Mon Sep 17 00:00:00 2001 From: Sathish Ramani Date: Thu, 11 Mar 2021 18:14:14 +0800 Subject: [PATCH] Add curl to docker --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 521bdac..75af615 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM debian:stable-slim -RUN apt-get update -y && apt-get install wget -y +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 ENTRYPOINT ["geth"]