blob: 947f045e592c272d494036ec0fc1962b4ce6d576 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FROM alpine:3.6
ADD . /go-ethereum
RUN \
apk add --no-cache git go make gcc musl-dev linux-headers && \
(cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /usr/local/bin/ && \
apk del git go make gcc musl-dev linux-headers && \
rm -rf /go-ethereum
EXPOSE 8545 30303 30303/udp
ENTRYPOINT ["geth"]
|