github.com/aaa256/atlantis@v0.0.0-20210707112435-42ee889287a2/containers/docker/master-alpine/Dockerfile (about)

     1  FROM alpine:3.7
     2  
     3  RUN \
     4    apk add --update go git make gcc musl-dev linux-headers ca-certificates && \
     5    git clone --depth 1 --branch release/1.8 https://github.com/athereum/go-athereum && \
     6    (cd go-athereum && make gath) && \
     7    cp go-athereum/build/bin/gath /gath && \
     8    apk del go git make gcc musl-dev linux-headers && \
     9    rm -rf /go-athereum && rm -rf /var/cache/apk/*
    10  
    11  EXPOSE 8545
    12  EXPOSE 30303
    13  
    14  ENTRYPOINT ["/gath"]