aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 2d35c0141d8778cbc15a2635aaa52d654d697d18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM alpine:3.3

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

EXPOSE 8545
EXPOSE 30303

ENTRYPOINT ["/geth"]