FROM golang:1.17-alpine as builder COPY . /app WORKDIR /app RUN apk add git make build-base \ && make dist FROM gcr.io/distroless/base-debian10 COPY --from=builder /app/bin/helium-blockchain-exporter /usr/bin/helium-blockchain-exporter EXPOSE 9865 ENTRYPOINT [ "/usr/bin/helium-blockchain-exporter" ]