2021-09-21 10:18:34 +00:00
|
|
|
ARG ARCH="amd64"
|
|
|
|
ARG OS="linux"
|
2023-08-31 10:22:41 +00:00
|
|
|
FROM alpine:3
|
|
|
|
RUN apk --no-cache add freeipmi
|
2021-09-21 10:18:34 +00:00
|
|
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
2019-10-11 19:38:21 +00:00
|
|
|
|
2021-09-21 10:18:34 +00:00
|
|
|
ARG ARCH="amd64"
|
|
|
|
ARG OS="linux"
|
|
|
|
COPY .build/${OS}-${ARCH}/ipmi_exporter /bin/ipmi_exporter
|
2019-10-11 19:38:21 +00:00
|
|
|
|
2021-09-21 10:18:34 +00:00
|
|
|
EXPOSE 9290
|
|
|
|
USER nobody
|
|
|
|
ENTRYPOINT [ "/bin/ipmi_exporter" ]
|