From 3c77d091d126f4b31db95f1682ce8881ed27aef6 Mon Sep 17 00:00:00 2001 From: Antony Denyer Date: Mon, 7 Feb 2022 08:53:04 +0000 Subject: [PATCH] Add curl to base image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 812dcd6fe0..a4678d971f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN cd /go-ethereum && make geth bootnode # 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/ COPY --from=builder /go-ethereum/build/bin/bootnode /usr/local/bin/