File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ ARG BUILDNUM=""
6
6
# Build Geth in a stock Go builder container
7
7
FROM golang:1.16-alpine as builder
8
8
9
- RUN apk add --no-cache make gcc musl-dev linux-headers git
9
+ RUN apk add --no-cache gcc musl-dev linux-headers git
10
10
11
11
ADD . /go-ethereum
12
- RUN cd /go-ethereum && make geth
12
+ RUN cd /go-ethereum && go run build/ci.go install ./cmd/ geth
13
13
14
14
# Pull Geth into a second stage deploy alpine container
15
15
FROM alpine:latest
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ ARG BUILDNUM=""
6
6
# Build Geth in a stock Go builder container
7
7
FROM golang:1.16-alpine as builder
8
8
9
- RUN apk add --no-cache make gcc musl-dev linux-headers git
9
+ RUN apk add --no-cache gcc musl-dev linux-headers git
10
10
11
11
ADD . /go-ethereum
12
- RUN cd /go-ethereum && make all
12
+ RUN cd /go-ethereum && go run build/ci.go install
13
13
14
14
# Pull all binaries into a second stage deploy alpine container
15
15
FROM alpine:latest
You can’t perform that action at this time.
0 commit comments