From 4d9c6a1c2887102347bd93d4752e220ee37be9b2 Mon Sep 17 00:00:00 2001 From: Dmitrii Spichakov Date: Mon, 27 May 2024 16:01:39 -0300 Subject: [PATCH] Bump image --- .idea/.gitignore | 8 ++++++++ Dockerfile | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .idea/.gitignore diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Dockerfile b/Dockerfile index ba3bb50..7e4ec88 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.5/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.8/geth_linux && chmod 744 geth_linux && mv geth_linux /usr/local/bin/geth ENTRYPOINT ["geth"]