mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
0cc6a006c1
Former-commit-id: b1699eddfbe71837d0703c6c998624bdcffeee55 [formerly 324fd14865ea1bddc19d776718d1d8e1cf3ee210] Former-commit-id: 2523cca14cf81b44d7fe05a121524e38f9ecc77d
15 lines
421 B
Docker
15 lines
421 B
Docker
FROM alpine:3.7
|
|
|
|
RUN \
|
|
apk add --update go git make gcc musl-dev linux-headers ca-certificates && \
|
|
git clone --depth 1 --branch release/1.8 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 linux-headers && \
|
|
rm -rf /go-ethereum && rm -rf /var/cache/apk/*
|
|
|
|
EXPOSE 8545
|
|
EXPOSE 30303
|
|
|
|
ENTRYPOINT ["/geth"]
|