mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-29 08:03:48 +00:00
15 lines
461 B
Docker
15 lines
461 B
Docker
FROM ubuntu:xenial
|
|
|
|
RUN \
|
|
apt-get update && apt-get upgrade -q -y && \
|
|
apt-get install -y --no-install-recommends golang git make gcc libc-dev ca-certificates && \
|
|
git clone --depth 1 https://github.com/ubiq/go-ubiq && \
|
|
(cd go-ubiq && make gubiq) && \
|
|
cp go-ubiq/build/bin/gubiq /gubiq && \
|
|
apt-get remove -y golang git make gcc libc-dev && apt autoremove -y && apt-get clean && \
|
|
rm -rf /go-ubiq
|
|
|
|
EXPOSE 8588
|
|
EXPOSE 30388
|
|
|
|
ENTRYPOINT ["/gubiq"]
|