2019-04-15 08:36:25 -07:00
|
|
|
ARG ARCH="amd64"
|
|
|
|
|
ARG OS="linux"
|
2021-03-18 03:42:29 -07:00
|
|
|
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest
|
2018-08-28 10:28:58 -07:00
|
|
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
2024-10-08 03:06:49 -07:00
|
|
|
LABEL org.opencontainers.image.source="https://github.com/prometheus/node_exporter"
|
2014-02-07 10:35:57 -08:00
|
|
|
|
2019-04-15 08:36:25 -07:00
|
|
|
ARG ARCH="amd64"
|
|
|
|
|
ARG OS="linux"
|
|
|
|
|
COPY .build/${OS}-${ARCH}/node_exporter /bin/node_exporter
|
2016-01-24 14:38:06 -08:00
|
|
|
|
2015-06-07 05:36:16 -07:00
|
|
|
EXPOSE 9100
|
2017-06-08 11:02:20 -07:00
|
|
|
USER nobody
|
2016-01-24 14:38:06 -08:00
|
|
|
ENTRYPOINT [ "/bin/node_exporter" ]
|