Roy Crihfield
ebc2eb37e7
* refactor packages, flags, subscriptions * DRY refactor builder tests * use mockgen to generate mocks * update README * MODE=statediff no longer needed for unit tests * simplify func names, clean up metrics * move write params to service field * sql indexer: confirm quit after ipld cache reset prevents negative waitgroup panic * don't let TotalDifficulty become nil * use forked plugeth, plugeth-utils for now
18 lines
506 B
Docker
18 lines
506 B
Docker
# Using the same base golang image as geth
|
|
FROM golang:1.20-alpine as builder
|
|
|
|
RUN apk add --no-cache gcc musl-dev binutils-gold linux-headers git
|
|
|
|
# Get and cache deps
|
|
COPY go.mod /plugeth-statediff/
|
|
COPY go.sum /plugeth-statediff/
|
|
RUN cd /plugeth-statediff && go mod download
|
|
|
|
ADD . /plugeth-statediff
|
|
RUN cd /plugeth-statediff && \
|
|
go build --tags linkgeth --buildmode=plugin --trimpath -o statediff.so ./main
|
|
|
|
FROM alpine:latest
|
|
|
|
COPY --from=builder /plugeth-statediff/statediff.so /usr/local/lib/
|