diff --git a/Dockerfile b/Dockerfile index 7badbc1320a4..5246f4d1bad3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,11 @@ FROM golang:1.17-alpine as builder RUN apk add --no-cache gcc musl-dev linux-headers git +# 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 + ADD . /go-ethereum RUN cd /go-ethereum && go run build/ci.go install ./cmd/geth diff --git a/Dockerfile.alltools b/Dockerfile.alltools index 3ae5377e4f36..73cb661b7fba 100644 --- a/Dockerfile.alltools +++ b/Dockerfile.alltools @@ -8,6 +8,11 @@ FROM golang:1.17-alpine as builder RUN apk add --no-cache gcc musl-dev linux-headers git +# 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 + ADD . /go-ethereum RUN cd /go-ethereum && go run build/ci.go install