aboutsummaryrefslogtreecommitdiffstats
path: root/containers/docker/develop-alpine/Dockerfile
blob: 3393c4337459c89f2033594151abaf9b6d54aea8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM alpine:3.4

RUN \
  apk add --update go git make gcc musl-dev && \
  git clone --depth 1 https://github.com/ethereum/go-ethereum && \
  (cd go-ethereum && make geth) && \
  cp go-ethereum/build/bin/geth /geth && \
  apk del go git make gcc musl-dev && \
  rm -rf /go-ethereum && rm -rf /var/cache/apk/*

EXPOSE 8545
EXPOSE 30303

ENTRYPOINT ["/geth"]