From 6bd676b594366c3b3cf1aaa987eedb8f90805005 Mon Sep 17 00:00:00 2001 From: Dmitrii Spichakov Date: Wed, 25 Sep 2024 20:14:39 -0300 Subject: [PATCH] Bump image to v1.4.15 --- .gitignore | 2 ++ Dockerfile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..090a1f0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.idea +.DS_Store diff --git a/Dockerfile b/Dockerfile index ff2b876..b3b5f79 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.14/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.15/geth_linux && chmod 744 geth_linux && mv geth_linux /usr/local/bin/geth ENTRYPOINT ["geth"]