File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,6 +2,15 @@ ARG ARCH="amd64"
22ARG OS="linux"
33FROM quay.io/prometheus/busybox-${OS}-${ARCH}:glibc
44LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
5+ LABEL org.opencontainers.image.authors="The Prometheus Authors"
6+ LABEL org.opencontainers.image.vendor="Prometheus"
7+ LABEL org.opencontainers.image.title="snmp_exporter"
8+ LABEL org.opencontainers.image.description="Prometheus SNMP Exporter"
9+ LABEL org.opencontainers.image.source="https://github.com/prometheus-community/fortigate_exporter"
10+ LABEL org.opencontainers.image.url="https://github.com/prometheus-community/fortigate_exporter"
11+ LABEL org.opencontainers.image.documentation="https://github.com/prometheus-community/fortigate_exporter/blob/main/README.md"
12+ LABEL org.opencontainers.image.licenses="Apache License 2.0"
13+ LABEL io.prometheus.image.variant="busybox"
514
615ARG ARCH="amd64"
716ARG OS="linux"
Original file line number Diff line number Diff line change 1+ ARG DISTROLESS_ARCH="amd64"
2+ FROM gcr.io/distroless/static-debian13:nonroot-${DISTROLESS_ARCH}
3+
4+ ARG ARCH="amd64"
5+ ARG OS="linux"
6+ LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
7+ LABEL org.opencontainers.image.authors="The Prometheus Authors"
8+ LABEL org.opencontainers.image.vendor="Prometheus"
9+ LABEL org.opencontainers.image.title="snmp_exporter"
10+ LABEL org.opencontainers.image.description="Prometheus SNMP Exporter"
11+ LABEL org.opencontainers.image.source="https://github.com/prometheus-community/fortigate_exporter"
12+ LABEL org.opencontainers.image.url="https://github.com/prometheus-community/fortigate_exporter"
13+ LABEL org.opencontainers.image.documentation="https://github.com/prometheus-community/fortigate_exporter/blob/main/README.md"
14+ LABEL org.opencontainers.image.licenses="Apache License 2.0"
15+ LABEL io.prometheus.image.variant="distroless"
16+
17+ ARG ARCH="amd64"
18+ ARG OS="linux"
19+ COPY .build/${OS}-${ARCH}/fortigate_exporter /bin/fortigate_exporter
20+
21+ EXPOSE 9710
22+ ENTRYPOINT [ "/bin/fortigate_exporter" ]
You can’t perform that action at this time.
0 commit comments