mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 06:36:43 +00:00
14 lines
361 B
Docker
14 lines
361 B
Docker
FROM alpine:3.4
|
|
|
|
RUN \
|
|
apk add --update go git make gcc musl-dev && \
|
|
git clone --depth 1 --branch release/1.5 https://github.com/ubiq/go-ubiq && \
|
|
(cd go-ubiq && make gubiq) && \
|
|
cp go-ubiq/build/bin/gubiq /gubiq && \
|
|
apk del go git make gcc musl-dev && \
|
|
rm -rf /go-ubiq && rm -rf /var/cache/apk/*
|
|
|
|
EXPOSE 8588
|
|
EXPOSE 30388
|
|
|
|
ENTRYPOINT ["/gubiq"]
|