2020-03-16 17:03:05 +00:00
|
|
|
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}/statsd_exporter /bin/statsd_exporter
|
|
|
|
|
|
|
|
USER nobody
|
|
|
|
EXPOSE 9102 9125 9125/udp
|
|
|
|
HEALTHCHECK CMD wget --spider -S "http://localhost:9102/metrics" -T 60 2>&1 || exit 1
|
|
|
|
ENTRYPOINT [ "/bin/statsd_exporter" ]
|