mirror of
https://github.com/eko/pihole-exporter.git
synced 2024-11-22 11:15:19 +01:00
c8be2ba157
Bumps golang from 1.16.3-alpine3.12 to 1.16.4-alpine3.12. Signed-off-by: dependabot[bot] <support@github.com>
23 lines
465 B
Docker
23 lines
465 B
Docker
ARG IMAGE=scratch
|
|
ARG OS=linux
|
|
ARG ARCH=amd64
|
|
|
|
FROM golang:1.16.4-alpine3.12 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"]
|