github.com/ubiq/go-ethereum@v3.0.1+incompatible/containers/docker/master-ubuntu/Dockerfile (about)

     1  FROM ubuntu:xenial
     2  
     3  ENV PATH=/usr/lib/go-1.9/bin:$PATH
     4  
     5  RUN \
     6    apt-get update && apt-get upgrade -q -y && \
     7    apt-get install -y --no-install-recommends golang-1.9 git make gcc libc-dev ca-certificates && \
     8    git clone --depth 1 --branch release/1.8 https://github.com/ubiq/go-ubiq && \
     9    (cd go-ubiq && make gubiq) && \
    10    cp go-ubiq/build/bin/gubiq /gubiq && \
    11    apt-get remove -y golang-1.9 git make gcc libc-dev && apt autoremove -y && apt-get clean && \
    12    rm -rf /go-ubiq
    13  
    14  EXPOSE 8588
    15  EXPOSE 30388
    16  
    17  ENTRYPOINT ["/gubiq"]