quorum/Dockerfile.alltools

16 lines
416 B
Docker
Raw Normal View History

2018-05-23 22:32:26 -07:00
# Build Geth in a stock Go builder container
FROM golang:1.13-alpine as builder
2018-05-23 22:32:26 -07:00
RUN apk add --no-cache make gcc musl-dev linux-headers git
2018-05-23 22:32:26 -07:00
ADD . /go-ethereum
RUN cd /go-ethereum && make all
# Pull all binaries into a second stage deploy alpine container
FROM alpine:latest
RUN apk add --no-cache ca-certificates
COPY --from=builder /go-ethereum/build/bin/* /usr/local/bin/
EXPOSE 8545 8546 8547 30303 30303/udp