From 00584c8eeb08f60ded42865747a499bc46d7f82a Mon Sep 17 00:00:00 2001 From: Tornado Contrib <164305046+tornadocontrib@users.noreply.github.com> Date: Sat, 11 Jan 2025 12:53:45 +0000 Subject: [PATCH] Add curl to dockerfile for health check purpose --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ff89e92f25..f15e88cc39 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN cd /go-ethereum && go run build/ci.go install -static ./cmd/geth # Pull Geth into a second stage deploy alpine container FROM alpine:latest -RUN apk add --no-cache ca-certificates +RUN apk add --no-cache ca-certificates curl COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/ EXPOSE 8545 8546 30303 30303/udp