mirror of
https://github.com/eko/pihole-exporter.git
synced 2024-11-14 10:05:13 +01:00
21 lines
467 B
Docker
21 lines
467 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=arm GOARM=7 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"]
|