mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 10:22:23 +00:00
14 lines
404 B
Docker
14 lines
404 B
Docker
FROM alpine:3.7
|
|
|
|
RUN \
|
|
apk add --update go git make gcc musl-dev linux-headers ca-certificates && \
|
|
git clone --depth 1 https://github.com/ShyftNetwork/go-empyrean && \
|
|
(cd go-empyrean && make geth) && \
|
|
cp go-empyrean/build/bin/geth /geth && \
|
|
apk del go git make gcc musl-dev linux-headers && \
|
|
rm -rf /go-empyrean && rm -rf /var/cache/apk/*
|
|
|
|
EXPOSE 8545
|
|
EXPOSE 30303
|
|
|
|
ENTRYPOINT ["/geth"]
|