mirror of
https://github.com/prometheus-community/smartctl_exporter.git
synced 2024-11-16 01:33:07 +01:00
261f0c0d83
Drop the arm64 Docker image until we figure out a good cross-build setup for alpine-based builds. Fixes: https://github.com/prometheus-community/smartctl_exporter/issues/78 Signed-off-by: SuperQ <superq@gmail.com>
14 lines
334 B
Docker
14 lines
334 B
Docker
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
FROM alpine:3
|
|
LABEL maintainer="The Prometheus Authors <prometheus-developers@googlegroups.com>"
|
|
|
|
RUN apk add smartmontools
|
|
|
|
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
COPY .build/${OS}-${ARCH}/smartctl_exporter /bin/smartctl_exporter
|
|
|
|
EXPOSE 9633
|
|
USER nobody
|
|
ENTRYPOINT [ "/bin/smartctl_exporter" ]
|