aa984711bd
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
|