node_exporter/Dockerfile.multiarch

15 lines
390 B
Docker
Raw Normal View History

2025-08-01 12:11:29 -07:00
FROM quay.io/prometheus/busybox:latest
ARG TARGETPLATFORM
ARG BUILDPLATFORM
ARG TARGETOS
ARG TARGETARCH
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
# Copy the correct binary based on target architecture
COPY .build/${TARGETOS}-${TARGETARCH}/node_exporter /bin/node_exporter
EXPOSE 9100
USER nobody
ENTRYPOINT [ "/bin/node_exporter" ]