2017-10-10 11:38:49 +02:00
|
|
|
# Build Geth in a stock Go builder container
|
2019-10-04 17:21:24 +02:00
|
|
|
FROM golang:1.13-alpine as builder
|
2017-10-10 11:38:49 +02:00
|
|
|
|
2019-10-04 17:21:24 +02:00
|
|
|
RUN apk add --no-cache make gcc musl-dev linux-headers git
|
2017-08-04 23:14:17 +07:00
|
|
|
|
|
|
|
ADD . /go-ethereum
|
2017-10-10 11:38:49 +02:00
|
|
|
RUN cd /go-ethereum && make geth
|
|
|
|
|
|
|
|
# Pull Geth into a second stage deploy alpine container
|
|
|
|
FROM alpine:latest
|
2017-08-04 23:14:17 +07:00
|
|
|
|
2017-10-10 11:38:49 +02:00
|
|
|
RUN apk add --no-cache ca-certificates
|
|
|
|
COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/
|
2017-08-04 23:14:17 +07:00
|
|
|
|
2019-10-04 17:21:24 +02:00
|
|
|
EXPOSE 8545 8546 8547 30303 30303/udp
|
2017-08-04 23:14:17 +07:00
|
|
|
ENTRYPOINT ["geth"]
|