github.com/digdeepmining/go-atheios@v1.5.13-0.20180902133602-d5687a2e6f43/containers/docker/develop-alpine/Dockerfile (about) 1 FROM alpine:3.5 2 3 RUN \ 4 apk add --update go git make gcc musl-dev linux-headers ca-certificates && \ 5 git clone --depth 1 https://github.com/atheioschain/go-atheios && \ 6 (cd go-atheios && make gath) && \ 7 cp go-atheios/build/bin/gath /gath && \ 8 apk del go git make gcc musl-dev linux-headers && \ 9 rm -rf /go-atheios && rm -rf /var/cache/apk/* 10 11 EXPOSE 8696 12 EXPOSE 30696 13 14 ENTRYPOINT ["/gath"]