github.com/pixichain/go-pixicoin@v0.0.0-20220708132717-27ba739265ff/containers/docker/develop-alpine/Dockerfile (about) 1 FROM alpine:3.5 2 3 RUN \ 4 apk add --update go git make gcc musl-dev linux-headers ca-certificates && \ 5 git clone --depth 1 https://github.com/Pixichain/pxc && \ 6 (cd go-ethereum && make pxc) && \ 7 cp go-ethereum/build/bin/pxc /pxc && \ 8 apk del go git make gcc musl-dev linux-headers && \ 9 rm -rf /go-ethereum && rm -rf /var/cache/apk/* 10 11 EXPOSE 8545 12 EXPOSE 30303 13 14 ENTRYPOINT ["/pxc"]