mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-16 03:46:37 +00:00
26 lines
695 B
Docker
26 lines
695 B
Docker
FROM linuxkit/alpine:86cd4f51b49fb9a078b50201d892a3c7973d48ec as build
|
|
|
|
RUN apk add --no-cache go git musl-dev make
|
|
|
|
ENV GOPATH=/go PATH=$PATH:/go/bin
|
|
ENV GITREPO=github.com/prometheus/node_exporter
|
|
ENV COMMIT=v0.16.0
|
|
|
|
RUN go get -d ${GITREPO} \
|
|
&& cd /go/src/${GITREPO} \
|
|
&& git checkout ${COMMIT} \
|
|
&& CGO_ENABLED=0 make build \
|
|
&& mv node_exporter /bin/
|
|
|
|
|
|
FROM scratch
|
|
ENTRYPOINT []
|
|
CMD []
|
|
WORKDIR /
|
|
COPY --from=build /bin/node_exporter /bin/node_exporter
|
|
|
|
ENTRYPOINT ["/bin/node_exporter", "--path.procfs", "/host/proc", \
|
|
"--path.sysfs", "/host/sys", \
|
|
"--collector.filesystem.ignored-mount-points", \
|
|
"^/(sys|proc|dev|host|etc)($|/)"]
|