mirror of
https://github.com/eko/pihole-exporter.git
synced 2024-11-16 10:25:11 +01:00
fc70035d93
Prevent travis build failure
24 lines
487 B
Docker
24 lines
487 B
Docker
FROM golang:alpine as builder
|
|
|
|
ARG OS=linux
|
|
ARG ARCH=amd64
|
|
|
|
WORKDIR /go/src/github.com/eko/pihole-exporter
|
|
COPY . .
|
|
|
|
RUN apk update && \
|
|
apk --no-cache add git alpine-sdk upx
|
|
|
|
RUN GO111MODULE=on go mod vendor
|
|
RUN CGO_ENABLED=0 GOOS=$OS GOARCH=$ARCH go build -ldflags '-s -w' -o binary ./
|
|
RUN upx -f --brute binary
|
|
|
|
FROM scratch
|
|
|
|
LABEL name="pihole-exporter"
|
|
|
|
WORKDIR /root/
|
|
COPY --from=builder /go/src/github.com/eko/pihole-exporter/binary pihole-exporter
|
|
|
|
CMD ["./pihole-exporter"]
|