Skip to content

Commit

Permalink
workaround issue with MUSL and roaring bitmaps
Browse files Browse the repository at this point in the history
  • Loading branch information
mandrigin committed Oct 1, 2020
1 parent 96d9639 commit 1e023fe
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
FROM golang:1.15-alpine as builder

RUN apk add --no-cache make gcc musl-dev linux-headers git
FROM golang:1.15 as builder

WORKDIR /app

Expand All @@ -11,9 +9,8 @@ RUN go mod download
ADD . .
RUN make all

FROM alpine:3
FROM ubuntu:18.04

RUN apk add --no-cache ca-certificates
COPY --from=builder /app/build/bin/* /usr/local/bin/

EXPOSE 8545 8546 8547 30303 30303/udp 8080 9090 6060

0 comments on commit 1e023fe

Please sign in to comment.