Skip to content

Commit e615144

Browse files
authored
Merge pull request #1199 from ethereum-optimism/fix/alpine-image
docker: pin to alpine 3.13 for l2geth
2 parents 7c5fde6 + c3868f4 commit e615144

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ops/docker/Dockerfile.geth

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Build Geth in a stock Go builder container
2-
FROM golang:1.15-alpine as builder
2+
FROM golang:1.15-alpine3.13 as builder
33

44
RUN apk add --no-cache make gcc musl-dev linux-headers git
55

66
ADD ./l2geth /go-ethereum
77
RUN cd /go-ethereum && make geth
88

99
# Pull Geth into a second stage deploy alpine container
10-
FROM alpine:latest
10+
FROM alpine:3.13
1111

1212
RUN apk add --no-cache ca-certificates jq curl
1313
COPY --from=builder /go-ethereum/build/bin/geth /usr/local/bin/

0 commit comments

Comments
 (0)