diff --git a/Dockerfile b/Dockerfile index c0243adc3db2f410b541b50d3b75334554a010fb..e76c5765bc273fe1da5327e5fce54d247871bf98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,10 @@ ARG BUILDNUM="" # Build Geth in a stock Go builder container 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 -RUN cd /go-ethereum && make geth +RUN cd /go-ethereum && go run build/ci.go install ./cmd/geth # Pull Geth into a second stage deploy alpine container FROM alpine:latest diff --git a/Dockerfile.alltools b/Dockerfile.alltools index 1a26896908e85d26d97cac222c271b4ee42e1b50..71f63b7a47c3536bb8c9d5c4a34a991087b6c2b6 100644 --- a/Dockerfile.alltools +++ b/Dockerfile.alltools @@ -6,10 +6,10 @@ ARG BUILDNUM="" # Build Geth in a stock Go builder container 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 -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 FROM alpine:latest