Skip to content

Commit

Permalink
clients/geth: fix build for Dockerfile.git (#791)
Browse files Browse the repository at this point in the history
Co-authored-by: Felix Lange <fjl@twurst.com>
  • Loading branch information
s1na and fjl authored Jun 14, 2023
1 parent 4215378 commit dd1627f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/go-ethereum/Dockerfile.git
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## Pulls geth from a git repository and builds it from source.

FROM alpine:latest as builder
FROM golang:1.20-alpine as builder
ARG github=ethereum/go-ethereum
ARG tag=master

RUN \
apk add --update bash curl jq go git make gcc musl-dev \
apk add --update bash curl jq git make gcc musl-dev \
ca-certificates linux-headers && \
git clone --depth 1 --branch $tag https://github.com/$github && \
cd go-ethereum && \
Expand Down

0 comments on commit dd1627f

Please sign in to comment.