2021-06-21 11:16:51 -05:00
|
|
|
# Support setting various labels on the final image
|
|
|
|
ARG COMMIT=""
|
|
|
|
ARG VERSION=""
|
|
|
|
ARG BUILDNUM=""
|
|
|
|
|
2017-09-05 04:16:59 -05:00
|
|
|
# Build Geth in a stock Go builder container
|
2024-03-18 11:36:50 -05:00
|
|
|
FROM golang:1.22-alpine as builder
|
2017-09-05 04:16:59 -05:00
|
|
|
|
2021-07-06 01:29:55 -05:00
|
|
|
RUN apk add --no-cache gcc musl-dev linux-headers git
|
2016-11-15 11:57:56 -06:00
|
|
|
|
2022-05-03 04:17:24 -05:00
|
|
|
# Get dependencies - will also be cached if we won't change go.mod/go.sum
|
|
|
|
COPY go.mod /go-ethereum/
|
|
|
|
COPY go.sum /go-ethereum/
|
|
|
|
RUN cd /go-ethereum && go mod download
|
|
|
|
|
2016-11-15 11:57:56 -06:00
|
|
|
ADD . /go-ethereum
|
2022-08-10 03:30:59 -05:00
|
|
|
RUN cd /go-ethereum && go run build/ci.go install -static ./cmd/geth
|
2017-09-05 04:16:59 -05:00
|
|
|
|
|
|
|
# Pull Geth into a second stage deploy alpine container
|
|
|
|
FROM alpine:latest
|
2016-11-15 11:57:56 -06:00
|
|
|
|
2017-09-05 08:06:04 -05:00
|
|
|
RUN apk add --no-cache ca-certificates
|
2017-09-05 04:16:59 -05:00
|
|
|
COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/
|
2016-11-15 11:57:56 -06:00
|
|
|
|
2020-09-13 15:25:15 -05:00
|
|
|
EXPOSE 8545 8546 30303 30303/udp
|
2017-05-20 12:36:24 -05:00
|
|
|
ENTRYPOINT ["geth"]
|
2021-06-21 11:16:51 -05:00
|
|
|
|
2024-03-20 02:49:38 -05:00
|
|
|
# Add some metadata labels to help programmatic image consumption
|
2021-06-21 11:16:51 -05:00
|
|
|
ARG COMMIT=""
|
|
|
|
ARG VERSION=""
|
|
|
|
ARG BUILDNUM=""
|
|
|
|
|
|
|
|
LABEL commit="$COMMIT" version="$VERSION" buildnum="$BUILDNUM"
|