diff --git a/Dockerfile b/Dockerfile index c766576a8f..d8a875beea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ ADD . /go-ethereum RUN cd /go-ethereum && make geth # Pull Geth into a second stage deploy alpine container -FROM alpine:latest +FROM alpine:3.10 RUN apk add --no-cache ca-certificates COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/ diff --git a/Dockerfile.alltools b/Dockerfile.alltools index a4adba9d5b..288ee1dd82 100644 --- a/Dockerfile.alltools +++ b/Dockerfile.alltools @@ -7,7 +7,7 @@ ADD . /go-ethereum RUN cd /go-ethereum && make all # Pull all binaries into a second stage deploy alpine container -FROM alpine:latest +FROM alpine:3.10 RUN apk add --no-cache ca-certificates COPY --from=builder /go-ethereum/build/bin/* /usr/local/bin/