pihole-exporter/Dockerfile
William Blew 29fa6a50ab bump golang to 1.20.1 to address buildvcs=true failure
The older golang:1.19.3-alpine3.15 as builder is failing, due to
the go build error 'error obtaining VCS status: exit status 128'.

Bumping the builder image to golang:1.20.1-alpine3.17  fixes
the this go build failure.
2023-02-26 13:40:22 -08:00

23 lines
465 B
Docker

ARG IMAGE=scratch
ARG OS=linux
ARG ARCH=amd64
FROM golang:1.20.1-alpine3.17 as builder
WORKDIR /go/src/github.com/eko/pihole-exporter
COPY . .
RUN apk --no-cache add git alpine-sdk
RUN GO111MODULE=on go mod vendor
RUN CGO_ENABLED=0 GOOS=$OS GOARCH=$ARCH go build -ldflags '-s -w' -o binary ./
FROM $IMAGE
LABEL name="pihole-exporter"
WORKDIR /root/
COPY --from=builder /go/src/github.com/eko/pihole-exporter/binary pihole-exporter
CMD ["./pihole-exporter"]