From c9ade8e13d346bb920e2d84f6ecc5c96610b4ee3 Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Mon, 18 Mar 2024 22:26:15 +0800 Subject: [PATCH] bump go in dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9b3ed2c..5df0c0d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ -# Using the same base golang image as plugeth -FROM golang:1.20-alpine3.18 as builder +# Using image with same alpine as plugeth, +# but go 1.21 to evade https://github.com/Consensys/gnark-crypto/issues/468 +FROM golang:1.21-alpine3.18 as builder RUN apk add --no-cache gcc musl-dev binutils-gold linux-headers git