Skip to content

Commit

Permalink
simulators/eth2: Fix Docker golang version (#1003)
Browse files Browse the repository at this point in the history
* simulators/eth2/engine: Dockerfile, golang:1.20

* simulators/eth2/testnet: Dockerfile, golang:1.20

* simulators/eth2/withdrawals: Dockerfile, golang:1.20
  • Loading branch information
marioevz authored Feb 28, 2024
1 parent ad0b0ee commit 23767cb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion simulators/eth2/engine/Dockerfile
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion simulators/eth2/testnet/Dockerfile
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion simulators/eth2/withdrawals/Dockerfile
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 23767cb

Please sign in to comment.