diff --git a/Dockerfile b/Dockerfile index c9a18e179..fb5661a6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,10 @@ WORKDIR /go-ethereum # Copy codebase and build Geth COPY . . -RUN go run -buildvcs=false build/ci.go install -static ./cmd/geth +# RUN go run build/ci.go install -static ./cmd/geth +RUN go build -buildvcs=false -o geth-coprocessor build/ci.go &&\ + ./geth-coprocessor install -static ./cmd/geth + # Final Stage FROM alpine:3.20.3