Commit 1abf51a 1 parent 60ced6c commit 1abf51a Copy full SHA for 1abf51a
File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -47,4 +47,3 @@ profile.cov
47
47
/dashboard /assets /package-lock.json
48
48
49
49
** /yarn-error.log
50
-
Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ ARG BUILDNUM=""
6
6
# Build Geth in a stock Go builder container
7
7
FROM golang:1.18-alpine as builder
8
8
9
- ENV GOPROXY https://proxy.golang.org,direct
9
+ RUN apk add --no-cache gcc musl-dev linux-headers git
10
10
11
11
ADD . /go-ethereum
12
- RUN apk add --no-cache gcc musl-dev linux-headers git ca-certificates \
13
- && cd /go-ethereum && go run build/ci.go install ./cmd/geth
12
+ RUN cd /go-ethereum && go run build/ci.go install ./cmd/geth
14
13
15
14
# Pull Geth into a second stage deploy alpine container
16
15
FROM alpine:latest
17
16
17
+ RUN apk add --no-cache ca-certificates
18
18
COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/
19
19
20
20
EXPOSE 8545 8546 30303 30303/udp
You can’t perform that action at this time.
0 commit comments