mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-10 07:34:09 -08:00
e8d724c547
This make the docker image work until we find how to rebuild node_exporter statically for linux/amd64
8 lines
215 B
Docker
8 lines
215 B
Docker
FROM quay.io/prometheus/busybox:glibc
|
|
MAINTAINER The Prometheus Authors <prometheus-developers@googlegroups.com>
|
|
|
|
COPY node_exporter /bin/node_exporter
|
|
|
|
EXPOSE 9100
|
|
ENTRYPOINT [ "/bin/node_exporter" ]
|