File: Dockerfile

package info (click to toggle)
prometheus-haproxy-exporter 0.15.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 744 kB
  • sloc: sh: 53; makefile: 41
file content (12 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (2)
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}: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

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