From f1894c12c563b02518a2732b55ddc168eabbc4dc Mon Sep 17 00:00:00 2001 From: Yohan9206 Date: Sun, 3 Aug 2025 18:50:47 +0300 Subject: [PATCH] fix --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9ca222d512..3c59d642df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,9 +24,11 @@ FROM alpine:latest RUN apk add --no-cache ca-certificates libstdc++ postgresql-client su-exec bash curl -COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/ +#COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/ +COPY --from=geth-builder /go-ethereum/build/bin/geth /usr/local/bin/ COPY --from=blockscout-builder /blockscout /blockscout + # Custom entrypoint COPY start.sh /start.sh RUN chmod +x /start.sh