github.com/SmartMeshFoundation/Spectrum@v0.0.0-20220621030607-452a266fee1e/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/SmartMeshFoundation/Spectrum && \
     7    (cd Spectrum && make geth) && \
     8    cp Spectrum/build/bin/geth /geth && \
     9    apt-get remove -y golang git make gcc libc-dev && apt autoremove -y && apt-get clean && \
    10    rm -rf /Spectrum
    11  
    12  EXPOSE 8545
    13  EXPOSE 30303
    14  
    15  ENTRYPOINT ["/geth"]