From f0661b236875216d784f31d312ec0da6d893c91a Mon Sep 17 00:00:00 2001 From: Mario Vega Date: Mon, 23 Oct 2023 15:03:50 +0000 Subject: [PATCH] simulators/ethereum/engine,pyspec: Use `golang:1.20-alpine` --- simulators/ethereum/engine/Dockerfile | 2 +- simulators/ethereum/pyspec/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/simulators/ethereum/engine/Dockerfile b/simulators/ethereum/engine/Dockerfile index 84ee104173..7353bbd9f3 100644 --- a/simulators/ethereum/engine/Dockerfile +++ b/simulators/ethereum/engine/Dockerfile @@ -1,5 +1,5 @@ # This simulation runs Engine API tests. -FROM golang:1-alpine as builder +FROM golang:1.20-alpine as builder RUN apk add --update gcc musl-dev linux-headers # Build the simulator executable. diff --git a/simulators/ethereum/pyspec/Dockerfile b/simulators/ethereum/pyspec/Dockerfile index 1ce323dde1..2c5c5cedb1 100644 --- a/simulators/ethereum/pyspec/Dockerfile +++ b/simulators/ethereum/pyspec/Dockerfile @@ -3,7 +3,7 @@ # ---------------------------------------------------------------# # 1) Create pyspec builder container. -FROM golang:1-alpine as builder +FROM golang:1.20-alpine as builder RUN apk add --update git ca-certificates gcc musl-dev linux-headers # Build the pyspec simulator executable.