mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-09 23:24:09 -08:00
834e35112c
Signed-off-by: Tariq Ibrahim <tariq.ibrahim@microsoft.com>
9 lines
241 B
Docker
9 lines
241 B
Docker
FROM quay.io/prometheus/busybox:glibc
|
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
|
|
|
COPY node_exporter /bin/node_exporter
|
|
|
|
EXPOSE 9100
|
|
USER nobody
|
|
ENTRYPOINT [ "/bin/node_exporter" ]
|