|
|
@ -6,10 +6,10 @@ ARG BUILDNUM="" |
|
|
|
# Build Geth in a stock Go builder container |
|
|
|
# Build Geth in a stock Go builder container |
|
|
|
FROM golang:1.16-alpine as builder |
|
|
|
FROM golang:1.16-alpine as builder |
|
|
|
|
|
|
|
|
|
|
|
RUN apk add --no-cache make gcc musl-dev linux-headers git |
|
|
|
RUN apk add --no-cache gcc musl-dev linux-headers git |
|
|
|
|
|
|
|
|
|
|
|
ADD . /go-ethereum |
|
|
|
ADD . /go-ethereum |
|
|
|
RUN cd /go-ethereum && make all |
|
|
|
RUN cd /go-ethereum && go run build/ci.go install |
|
|
|
|
|
|
|
|
|
|
|
# Pull all binaries into a second stage deploy alpine container |
|
|
|
# Pull all binaries into a second stage deploy alpine container |
|
|
|
FROM alpine:latest |
|
|
|
FROM alpine:latest |
|
|
|