From 1176f3dc032b48dc19a5358bc9171e6bce8af326 Mon Sep 17 00:00:00 2001 From: Mario Vega Date: Mon, 23 Oct 2023 12:55:44 -0600 Subject: [PATCH] simulators/ethereum/engine,pyspec: Use `golang:1.20-alpine` (#926) --- 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.