2018-01-02 04:27:33 -06:00
|
|
|
FROM alpine:3.7
|
2016-01-30 12:55:44 -06:00
|
|
|
|
|
|
|
RUN \
|
2017-02-13 10:31:09 -06:00
|
|
|
apk add --update go git make gcc musl-dev linux-headers ca-certificates && \
|
2018-02-14 06:49:53 -06:00
|
|
|
git clone --depth 1 --branch release/1.8 https://github.com/ethereum/go-ethereum && \
|
2016-07-25 09:31:48 -05:00
|
|
|
(cd go-ethereum && make geth) && \
|
|
|
|
cp go-ethereum/build/bin/geth /geth && \
|
2017-02-13 10:31:09 -06:00
|
|
|
apk del go git make gcc musl-dev linux-headers && \
|
2016-01-30 12:55:44 -06:00
|
|
|
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
|
|
|
|
|
|
|
|
EXPOSE 8545
|
|
|
|
EXPOSE 30303
|
|
|
|
|
|
|
|
ENTRYPOINT ["/geth"]
|