From dd1627f5faa9cc69457da00ebd37db2685a7cd45 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi <1591639+s1na@users.noreply.github.com> Date: Wed, 14 Jun 2023 11:34:37 +0200 Subject: [PATCH] clients/geth: fix build for Dockerfile.git (#791) Co-authored-by: Felix Lange --- clients/go-ethereum/Dockerfile.git | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/go-ethereum/Dockerfile.git b/clients/go-ethereum/Dockerfile.git index 957ec874c8..32d18cc3cb 100644 --- a/clients/go-ethereum/Dockerfile.git +++ b/clients/go-ethereum/Dockerfile.git @@ -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 && \