go-ethereum/Dockerfile.test
Will Meister 57f1ac2f75
Fixing Geth Tests (#6)
Fixing broken tests, skipping tests we intentionally break, and configuring CI within Github Actions
2020-05-21 14:56:39 -05:00

14 lines
295 B
Docker

FROM golang:1.14-alpine
RUN apk add --no-cache make gcc musl-dev linux-headers git
ENV GO111MODULE=on
COPY . /go-ethereum
RUN cd /go-ethereum && go run build/ci.go install
COPY docker/test_entrypoint.sh /bin
RUN chmod +x /bin/test_entrypoint.sh
ENTRYPOINT ["sh", "/bin/test_entrypoint.sh"]