chore: add OCI image labels to Dockerfile (#3593)

Signed-off-by: Julien Pivotto <291750+roidelapluie@users.noreply.github.com>
master
Julien 1 day ago committed by GitHub
parent e44fab2f10
commit b99dcb64f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 9
      Dockerfile

@ -2,6 +2,15 @@ ARG ARCH="amd64"
ARG OS="linux"
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:latest
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
LABEL org.opencontainers.image.authors="The Prometheus Authors"
LABEL org.opencontainers.image.vendor="Prometheus"
LABEL org.opencontainers.image.title="node_exporter"
LABEL org.opencontainers.image.description="Prometheus exporter for hardware and OS metrics exposed by *NIX kernels"
LABEL org.opencontainers.image.source="https://github.com/prometheus/node_exporter"
LABEL org.opencontainers.image.url="https://github.com/prometheus/node_exporter"
LABEL org.opencontainers.image.documentation="https://github.com/prometheus/node_exporter"
LABEL org.opencontainers.image.licenses="Apache License 2.0"
LABEL io.prometheus.image.variant="busybox"
ARG ARCH="amd64"
ARG OS="linux"

Loading…
Cancel
Save