aboutsummaryrefslogblamecommitdiffstats
path: root/Dockerfile
blob: f24506f69dbcf437d89b26dd3e30d50c3e8270b7 (plain) (tree)
1
2
3
4
5
6
7
8



                  
                                                        

                                                        
                                                        





                                                
FROM alpine:3.3

ADD . /go-ethereum
RUN \
  apk add --update git go make gcc musl-dev         && \
  (cd go-ethereum && make geth)                     && \
  cp go-ethereum/build/bin/geth /geth               && \
  apk del git go make gcc musl-dev                  && \
  rm -rf /go-ethereum && rm -rf /var/cache/apk/*

EXPOSE 8545
EXPOSE 30303

ENTRYPOINT ["/geth"]