Skip to content

Commit 23767cb

Browse files
authored
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
1 parent ad0b0ee commit 23767cb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

simulators/eth2/engine/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the simulator binary
2-
FROM golang:1-alpine AS builder
2+
FROM golang:1.20-alpine AS builder
33
RUN apk --no-cache add gcc musl-dev linux-headers cmake make clang build-base clang-static clang-dev
44

55
# Prepare workspace.

simulators/eth2/testnet/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1-alpine AS builder
1+
FROM golang:1.20-alpine AS builder
22
RUN apk --no-cache add gcc musl-dev linux-headers cmake make clang build-base clang-static clang-dev
33

44
# Prepare workspace.

simulators/eth2/withdrawals/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the simulator binary
2-
FROM golang:1-alpine AS builder
2+
FROM golang:1.20-alpine AS builder
33
RUN apk --no-cache add gcc musl-dev linux-headers cmake make clang build-base clang-static clang-dev
44

55
# Prepare workspace.

0 commit comments

Comments
 (0)