mirror of
https://github.com/eko/pihole-exporter.git
synced 2024-11-15 10:15:16 +01:00
fe5156ca55
This reverts commit 9d8446b647
.
21 lines
460 B
Docker
21 lines
460 B
Docker
FROM golang:alpine as builder
|
|
|
|
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=linux GOARCH=amd64 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"]
|