From 293c49bb68bb8191f4588a34109bb96ccf137c72 Mon Sep 17 00:00:00 2001 From: Stefan Stojanovic Date: Tue, 29 Oct 2024 23:05:05 +0100 Subject: [PATCH 1/3] updated version and moved back v prefix --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7c57069..0d6e19c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,5 +5,5 @@ RUN wget https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/v mv /app/build/bin/grpc_health_probe-linux-amd64 /app/build/bin/grpc_health_probe && \ chmod +x /app/build/bin/grpc_health_probe -FROM --platform=linux/amd64/v2 erigontech/erigon:2.60.8 +FROM --platform=linux/amd64/v2 erigontech/erigon:v2.60.9 COPY --from=builder /app/build/bin/* /usr/local/bin/ From 3b8beb0f63cf2288645f157740e666dfc033de23 Mon Sep 17 00:00:00 2001 From: Stefan Stojanovic Date: Thu, 31 Oct 2024 23:45:55 +0100 Subject: [PATCH 2/3] updated Dockerfile with nc --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0d6e19c..7d4f1d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,4 +6,9 @@ RUN wget https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/v chmod +x /app/build/bin/grpc_health_probe FROM --platform=linux/amd64/v2 erigontech/erigon:v2.60.9 +USER root +RUN apt update -y && \ + apt install -y netcat-openbsd=1.219-1 && \ + rm -rf /var/lib/apt/lists/* +USER erigon COPY --from=builder /app/build/bin/* /usr/local/bin/ From d01af2308c920947c7e23fddcbc4543a6c91c0fe Mon Sep 17 00:00:00 2001 From: Stefan Stojanovic Date: Thu, 7 Nov 2024 14:16:09 +0100 Subject: [PATCH 3/3] bump to 2.6.10 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7d4f1d6..bbff8d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN wget https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/v mv /app/build/bin/grpc_health_probe-linux-amd64 /app/build/bin/grpc_health_probe && \ chmod +x /app/build/bin/grpc_health_probe -FROM --platform=linux/amd64/v2 erigontech/erigon:v2.60.9 +FROM --platform=linux/amd64/v2 erigontech/erigon:v2.60.10 USER root RUN apt update -y && \ apt install -y netcat-openbsd=1.219-1 && \