Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/go-ethereum/Dockerfile.local
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ FROM golang:1-alpine as builder
ARG local_path=go-ethereum
COPY $local_path go-ethereum

WORKDIR /go-ethereum
RUN apk add --update bash curl jq git make
WORKDIR go-ethereum
RUN apk add --update bash curl jq git make gcc libc-dev linux-headers
RUN make geth
RUN mv ./build/bin/geth /usr/local/bin/geth

Expand Down