15 lines
400 B
Docker
15 lines
400 B
Docker
|
FROM alpine:3.5
|
||
|
|
||
|
RUN \
|
||
|
apk add --update go git make gcc musl-dev linux-headers ca-certificates && \
|
||
|
git clone --depth 1 https://github.com/ethereum/go-ethereum && \
|
||
|
(cd go-ethereum && make geth) && \
|
||
|
cp go-ethereum/build/bin/geth /geth && \
|
||
|
apk del go git make gcc musl-dev linux-headers && \
|
||
|
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
|
||
|
|
||
|
EXPOSE 8545
|
||
|
EXPOSE 30303
|
||
|
|
||
|
ENTRYPOINT ["/geth"]
|