mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
356 B
14 lines
356 B
FROM alpine:3.4
|
|
|
|
RUN \
|
|
apk add --update go git make gcc musl-dev && \
|
|
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 && \
|
|
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
|
|
|
|
EXPOSE 8545
|
|
EXPOSE 30303
|
|
|
|
ENTRYPOINT ["/geth"]
|
|
|