From 69fe8db258aab3231c294e9eb98c694ba44b60f4 Mon Sep 17 00:00:00 2001 From: fudongbai <296179868@qq.com> Date: Mon, 14 Dec 2020 20:01:45 +0800 Subject: [PATCH] add curl in docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f6fd62409310..b562b60a33cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ RUN cd /go-ethereum && make 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 8547 30303 30303/udp