aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 57844bd8f8c34a28fc15c92094d5c13757ec64c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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" ]