mirror of
https://github.com/prometheus-community/smartctl_exporter.git
synced 2024-11-16 01:33:07 +01:00
15 lines
402 B
Text
15 lines
402 B
Text
|
ARG ARCH="amd64"
|
||
|
ARG OS="linux"
|
||
|
FROM quay.io/prometheus/busybox-${OS}-${ARCH}:glibc
|
||
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
||
|
|
||
|
ARG ARCH="amd64"
|
||
|
ARG OS="linux"
|
||
|
COPY .build/${OS}-${ARCH}/smartctl_exporter /bin/smartctl_exporter
|
||
|
|
||
|
COPY smartctl_exporter.yaml /etc/smartctl_exporter.yaml
|
||
|
|
||
|
EXPOSE 9633
|
||
|
USER nobody
|
||
|
ENTRYPOINT [ "/bin/smartctl_exporter" ]
|