local_exporter/Containerfile

13 lines
268 B
Docker

FROM docker.io/library/golang:1.21 AS build
RUN go install github.com/lucab/local_exporter@latest
FROM registry.fedoraproject.org/fedora-minimal:38
COPY --from=build /go/bin/local_exporter /usr/local/bin/local_exporter
ENTRYPOINT ["local_exporter"]
USER 252:252