2020-04-17 08:06:54 +00:00
|
|
|
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}/json_exporter /bin/json_exporter
|
|
|
|
|
|
|
|
EXPOSE 7979
|
|
|
|
USER nobody
|
2020-06-11 22:01:42 +00:00
|
|
|
ENTRYPOINT [ "/bin/json_exporter" ]
|