13 lines
333 B
Docker
13 lines
333 B
Docker
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:glibc
|
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
|
|
|
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
COPY .build/${OS}-${ARCH}/node_exporter /bin/node_exporter
|
|
|
|
EXPOSE 9100
|
|
USER nobody
|
|
ENTRYPOINT [ "/bin/node_exporter" ]
|