2019-07-02 12:09:42 +00:00
|
|
|
ARG ARCH="amd64"
|
|
|
|
ARG OS="linux"
|
|
|
|
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest
|
2018-08-30 08:21:55 +00:00
|
|
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
2015-06-07 12:42:38 +00:00
|
|
|
|
2019-07-02 12:09:42 +00:00
|
|
|
ARG ARCH="amd64"
|
|
|
|
ARG OS="linux"
|
|
|
|
COPY .build/${OS}-${ARCH}/statsd_exporter /bin/statsd_exporter
|
2016-01-24 22:38:06 +00:00
|
|
|
|
2019-04-17 15:04:19 +00:00
|
|
|
USER nobody
|
2017-08-02 05:31:33 +00:00
|
|
|
EXPOSE 9102 9125 9125/udp
|
2019-03-13 09:27:02 +00:00
|
|
|
HEALTHCHECK CMD wget --spider -S "http://localhost:9102/metrics" -T 60 2>&1 || exit 1
|
2016-01-24 22:38:06 +00:00
|
|
|
ENTRYPOINT [ "/bin/statsd_exporter" ]
|