mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-25 06:06:44 +00:00
18 lines
526 B
Docker
18 lines
526 B
Docker
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/* && \
|
|
mkdir /datadir
|
|
|
|
EXPOSE 8545
|
|
EXPOSE 30303
|
|
|
|
VOLUME /datadir
|
|
|
|
ENTRYPOINT ["/geth", "--datadir=/datadir"]
|