mirror of
https://github.com/eko/pihole-exporter.git
synced 2024-11-16 10:25:11 +01:00
29fa6a50ab
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.
23 lines
465 B
Docker
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"]
|