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