go-ethereum/containers/docker/develop-alpine/Dockerfile
Christopher Franko 85d410d34e move all the deps to the latest repo
This was over looked for so long because it was already taken care of in
the newer branches.
2017-03-20 09:11:55 -04:00

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"]