Newer
Older
# Build Geth in a stock Go builder container
RUN apk add --no-cache make gcc musl-dev linux-headers git bash
Nick Johnson
committed
# Pull Bor into a second stage deploy alpine container
Nick Johnson
committed
RUN apk add --no-cache ca-certificates
COPY --from=builder /bor/build/bin/bor /usr/local/bin/
COPY --from=builder /bor/build/bin/bootnode /usr/local/bin/
Nick Johnson
committed