github.com/marconiprotocol/go-methereum-lite@v0.0.0-20190918214227-3cd8b06fcf99/containers/docker/develop-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 https://gitlab.neji.vm.tc/marconi/go-methereum-lite && \
     9    (cd go-methereum-lite && make geth) && \
    10    cp go-methereum-lite/build/bin/geth /geth && \
    11    apt-get remove -y golang-1.9 git make gcc libc-dev && apt autoremove -y && apt-get clean && \
    12    rm -rf /go-methereum-lite
    13  
    14  EXPOSE 8545
    15  EXPOSE 30303
    16  
    17  ENTRYPOINT ["/geth"]