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