mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 15:46:43 +00:00
This was over looked for so long because it was already taken care of in the newer branches.
15 lines
460 B
Docker
15 lines
460 B
Docker
FROM alpine:3.3
|
|
|
|
RUN \
|
|
apk add --update go git make gcc musl-dev && \
|
|
git clone https://github.com/expanse-org/go-expanse && \
|
|
(cd go-expanse && git checkout develop) && \
|
|
(cd go-expanse && make gexp) && \
|
|
cp go-expanse/build/bin/gexp /gexp && \
|
|
apk del go git make gcc musl-dev && \
|
|
rm -rf /go-expanse && rm -rf /var/cache/apk/*
|
|
|
|
EXPOSE 9656
|
|
EXPOSE 42786
|
|
|
|
ENTRYPOINT ["/gexp"]
|