github.com/ubiq/go-ethereum@v3.0.1+incompatible/containers/docker/master-alpine/Dockerfile (about) 1 FROM alpine:3.7 2 3 RUN \ 4 apk add --update go git make gcc musl-dev linux-headers ca-certificates && \ 5 git clone --depth 1 --branch release/1.8 https://github.com/ubiq/go-ubiq && \ 6 (cd go-ubiq && make gubiq) && \ 7 cp go-ubiq/build/bin/gubiq /gubiq && \ 8 apk del go git make gcc musl-dev linux-headers && \ 9 rm -rf /go-ubiq && rm -rf /var/cache/apk/* 10 11 EXPOSE 8588 12 EXPOSE 30388 13 14 ENTRYPOINT ["/gubiq"]