mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
build: fix BAD BLOCK error for consensus v1 and Go v1.24 v1.25 (#1482)
Co-authored-by: wit <wit765765346@gmail>
This commit is contained in:
parent
f234dd896e
commit
1da1b58e7e
4 changed files with 8 additions and 0 deletions
|
|
@ -1,5 +1,7 @@
|
|||
FROM golang:1.25-alpine AS builder
|
||||
|
||||
ENV GODEBUG=randseednop=0
|
||||
|
||||
RUN apk add --no-cache make gcc musl-dev linux-headers git
|
||||
|
||||
ADD . /XDPoSChain
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
FROM golang:1.25-alpine AS builder
|
||||
|
||||
ENV GODEBUG=randseednop=0
|
||||
|
||||
RUN apk add --no-cache make gcc musl-dev linux-headers
|
||||
|
||||
ADD . /XDPoSChain
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
FROM golang:1.25-alpine AS builder
|
||||
|
||||
ENV GODEBUG=randseednop=0
|
||||
|
||||
RUN apk add --no-cache make gcc musl-dev linux-headers git
|
||||
|
||||
ADD . /XDPoSChain
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
FROM golang:1.25-alpine AS builder
|
||||
|
||||
ENV GODEBUG=randseednop=0
|
||||
|
||||
RUN apk add make build-base linux-headers
|
||||
|
||||
COPY . /builder
|
||||
|
|
|
|||
Loading…
Reference in a new issue