github.com/pfcoder/quorum@v2.0.3-0.20180501191142-d4a1b0958135+incompatible/containers/docker/master-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 --branch release/1.7 https://github.com/ethereum/go-ethereum && \
     7    (cd go-ethereum && make geth) && \
     8    cp go-ethereum/build/bin/geth /geth && \
     9    apt-get remove -y golang git make gcc libc-dev && apt autoremove -y && apt-get clean && \
    10    rm -rf /go-ethereum
    11  
    12  EXPOSE 8545
    13  EXPOSE 30303
    14  
    15  ENTRYPOINT ["/geth"]