blob: 978dad442d11d082d5f1251781f215b7acbdfdb3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
FROM alpine:3.7
RUN \
apk add --update go git make gcc musl-dev linux-headers ca-certificates && \
git clone --depth 1 https://github.com/dexon-foundation/dexon && \
(cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/geth /geth && \
apk del go git make gcc musl-dev linux-headers && \
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
EXPOSE 8545
EXPOSE 30303
ENTRYPOINT ["/geth"]
|