From 23767cbf94c22d054e779ff784cbdf04e3d02b3c Mon Sep 17 00:00:00 2001 From: Mario Vega Date: Tue, 27 Feb 2024 18:33:57 -0600 Subject: [PATCH] simulators/eth2: Fix Docker golang version (#1003) * simulators/eth2/engine: Dockerfile, golang:1.20 * simulators/eth2/testnet: Dockerfile, golang:1.20 * simulators/eth2/withdrawals: Dockerfile, golang:1.20 --- simulators/eth2/engine/Dockerfile | 2 +- simulators/eth2/testnet/Dockerfile | 2 +- simulators/eth2/withdrawals/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/simulators/eth2/engine/Dockerfile b/simulators/eth2/engine/Dockerfile index 2a8ee69c5f..e3f4121b6c 100644 --- a/simulators/eth2/engine/Dockerfile +++ b/simulators/eth2/engine/Dockerfile @@ -1,5 +1,5 @@ # Build the simulator binary -FROM golang:1-alpine AS builder +FROM golang:1.20-alpine AS builder RUN apk --no-cache add gcc musl-dev linux-headers cmake make clang build-base clang-static clang-dev # Prepare workspace. diff --git a/simulators/eth2/testnet/Dockerfile b/simulators/eth2/testnet/Dockerfile index a8ec5ae3d7..d525ce5231 100644 --- a/simulators/eth2/testnet/Dockerfile +++ b/simulators/eth2/testnet/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1-alpine AS builder +FROM golang:1.20-alpine AS builder RUN apk --no-cache add gcc musl-dev linux-headers cmake make clang build-base clang-static clang-dev # Prepare workspace. diff --git a/simulators/eth2/withdrawals/Dockerfile b/simulators/eth2/withdrawals/Dockerfile index 999e8f550a..ec075d26cc 100644 --- a/simulators/eth2/withdrawals/Dockerfile +++ b/simulators/eth2/withdrawals/Dockerfile @@ -1,5 +1,5 @@ # Build the simulator binary -FROM golang:1-alpine AS builder +FROM golang:1.20-alpine AS builder RUN apk --no-cache add gcc musl-dev linux-headers cmake make clang build-base clang-static clang-dev # Prepare workspace.