mirror of
https://github.com/prometheus-community/ipmi_exporter
synced 2024-12-13 17:45:08 +00:00
13 lines
334 B
Docker
13 lines
334 B
Docker
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}/ipmi_exporter /bin/ipmi_exporter
|
|
|
|
EXPOSE 9290
|
|
USER nobody
|
|
ENTRYPOINT [ "/bin/ipmi_exporter" ]
|