We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7c5fde6 + c3868f4 commit e615144Copy full SHA for e615144
ops/docker/Dockerfile.geth
@@ -1,13 +1,13 @@
1
# Build Geth in a stock Go builder container
2
-FROM golang:1.15-alpine as builder
+FROM golang:1.15-alpine3.13 as builder
3
4
RUN apk add --no-cache make gcc musl-dev linux-headers git
5
6
ADD ./l2geth /go-ethereum
7
RUN cd /go-ethereum && make geth
8
9
# Pull Geth into a second stage deploy alpine container
10
-FROM alpine:latest
+FROM alpine:3.13
11
12
RUN apk add --no-cache ca-certificates jq curl
13
COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/
0 commit comments