update tests, helper methods, etc for changed interfaces linted and some tests updated... statediff tests failing on filesystem call locally undo changes to go.mod from rebase changed ref and repo to try old stack-orch with miner.etherbase arg turn off new tests yml for old tests with hack for old stack-orchestrator
8 lines
189 B
Docker
8 lines
189 B
Docker
# Build Geth in a stock Go builder container
|
|
FROM golang:1.15.5 as builder
|
|
|
|
#RUN apk add --no-cache make gcc musl-dev linux-headers git
|
|
|
|
ADD . /go-ethereum
|
|
RUN cd /go-ethereum && make geth
|