forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
374 B
13 lines
374 B
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"]
|
|
|