File: Dockerfile

package info (click to toggle)
prometheus-bind-exporter 0.4.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,076 kB
  • sloc: xml: 4,172; sh: 52; makefile: 41
file content (12 lines) | stat: -rw-r--r-- 333 bytes parent folder | download
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}/bind_exporter /bin/bind_exporter

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