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}/bind_exporter /bin/bind_exporter

EXPOSE      9119
USER        nobody
ENTRYPOINT  [ "/bin/bind_exporter" ]
