mirror of
https://github.com/prometheus-community/json_exporter
synced 2024-12-18 12:35:40 +00:00
bcfa332dd7
Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
13 lines
333 B
Docker
13 lines
333 B
Docker
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
|
|
ENTRYPOINT [ "/bin/json_exporter" ]
|