node_exporter/Dockerfile
Steve Durrheimer e8d724c547
Fix docker image by using glibc variation of quay.io/prometheus/busybox
This make the docker image work until we find how to rebuild node_exporter statically for linux/amd64
2017-02-25 15:26:43 +01:00

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" ]