From 390d83da9b58b93f862e852aca24adf92c510577 Mon Sep 17 00:00:00 2001 From: ankitm123 Date: Mon, 2 Sep 2019 08:33:27 -0400 Subject: [PATCH] cmd, internal/build,docker:tag final stage docker image --- Dockerfile | 2 +- Dockerfile.alltools | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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/