Codebase list prometheus-haproxy-exporter / debian/0.12.0+ds-1 Dockerfile
debian/0.12.0+ds-1

Tree @debian/0.12.0+ds-1 (Download .tar.gz)

Dockerfile @debian/0.12.0+ds-1raw · history · blame

ARG ARCH="amd64"
ARG OS="linux"
FROM        quay.io/prometheus/busybox:latest
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"

ARG ARCH="amd64"
ARG OS="linux"
COPY .build/${OS}-${ARCH}/haproxy_exporter /bin/haproxy_exporter

USER nobody
ENTRYPOINT ["/bin/haproxy_exporter"]
EXPOSE     9101