From 69735d90e6e147018756694859ab5c7b5302e5ad Mon Sep 17 00:00:00 2001 From: Aaron Sikes Date: Sat, 21 Oct 2017 18:48:20 -0400 Subject: [PATCH] Add all cmd executables to the docker image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index eae8924997..5be8ba2234 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,13 +4,13 @@ FROM golang:1.9-alpine as builder RUN apk add --no-cache make gcc musl-dev linux-headers ADD . /go-ethereum -RUN cd /go-ethereum && make geth +RUN cd /go-ethereum && make all # Pull Geth into a second stage deploy alpine container FROM alpine:latest RUN apk add --no-cache ca-certificates -COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/ +COPY --from=builder /go-ethereum/build/bin/* /usr/local/bin/ EXPOSE 8545 8546 30303 30303/udp ENTRYPOINT ["geth"]