2017-08-21 10:26:42 +00:00
|
|
|
FROM alpine:3.6
|
2016-11-15 17:57:56 +00:00
|
|
|
|
|
|
|
ADD . /go-ethereum
|
|
|
|
RUN \
|
2017-08-21 10:26:42 +00:00
|
|
|
apk add --no-cache git go make gcc musl-dev linux-headers && \
|
|
|
|
(cd go-ethereum && make geth) && \
|
|
|
|
cp go-ethereum/build/bin/geth /usr/local/bin/ && \
|
|
|
|
apk del git go make gcc musl-dev linux-headers && \
|
|
|
|
rm -rf /go-ethereum
|
2016-11-15 17:57:56 +00:00
|
|
|
|
2017-08-21 10:26:42 +00:00
|
|
|
EXPOSE 8545 30303 30303/udp
|
2016-11-15 17:57:56 +00:00
|
|
|
|
2017-05-20 17:36:24 +00:00
|
|
|
ENTRYPOINT ["geth"]
|