forked from mirror/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.
15 lines
462 B
15 lines
462 B
FROM alpine:3.3
|
|
|
|
RUN \
|
|
apk add --update go git make gcc musl-dev && \
|
|
git clone https://github.com/ethereum/go-ethereum && \
|
|
(cd go-ethereum && git checkout develop) && \
|
|
(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"]
|
|
|