github.com/digdeepmining/go-atheios@v1.5.13-0.20180902133602-d5687a2e6f43/containers/docker/develop-ubuntu/Dockerfile (about)

     1  FROM ubuntu:xenial
     2  
     3  RUN \
     4    apt-get update && apt-get upgrade -q -y && \
     5    apt-get install -y --no-install-recommends golang git make gcc libc-dev ca-certificates && \
     6    git clone --depth 1 https://github.com/atheioschain/go-atheios && \
     7    (cd go-atheios && make gath) && \
     8    cp go-atheios/build/bin/gath /gath && \
     9    apt-get remove -y golang git make gcc libc-dev && apt autoremove -y && apt-get clean && \
    10    rm -rf /go-atheios
    11  
    12  EXPOSE 8696
    13  EXPOSE 30696
    14  
    15  ENTRYPOINT ["/gath"]