mirror of
https://github.com/prometheus-community/smartctl_exporter.git
synced 2024-11-16 01:33:07 +01:00
0472e35e77
Use the `--platform` flag on `FROM` to build with the correct platform. Signed-off-by: SuperQ <superq@gmail.com>
16 lines
416 B
Docker
16 lines
416 B
Docker
ARG ARCH="amd64"
|
|
ARG OS="linux"
|
|
FROM --platform ${OS}/${ARCH} 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
|
|
|
|
COPY smartctl_exporter.yaml /etc/smartctl_exporter.yaml
|
|
|
|
EXPOSE 9633
|
|
USER nobody
|
|
ENTRYPOINT [ "/bin/smartctl_exporter" ]
|