This commit is contained in:
Robert Zaremba 2017-07-05 01:15:18 +00:00 committed by GitHub
commit a7fca5cbb6

View file

@ -4,7 +4,7 @@ ADD . /go-ethereum
RUN \
apk add --update git go make gcc musl-dev linux-headers && \
(cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /usr/local/bin/ && \
cp go-ethereum/build/bin/* /usr/local/bin/ && \
apk del git go make gcc musl-dev linux-headers && \
rm -rf /go-ethereum && rm -rf /var/cache/apk/*