github.com/pixichain/go-pixicoin@v0.0.0-20220708132717-27ba739265ff/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/Pixichain/pxc && \
     7    (cd go-ethereum && make pxc) && \
     8    cp go-ethereum/build/bin/pxc /pxc && \
     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 ["/pxc"]