prometheus-textfile-collectors/Dockerfile
Lauri Võsandi d6a8b35a98
All checks were successful
gitea-kspace/prometheus-textfile-collectors/pipeline/head This commit looks good
Bump version and include ipmitool
2021-11-24 15:18:05 +02:00

20 lines
432 B
Docker

FROM alpine AS build
RUN apk add --no-cache \
smartmontools \
jq \
nvme-cli \
bash \
hwids-pci \
ipmitool
COPY node-exporter-textfile-collector-scripts /scripts
COPY entrypoint.sh /entrypoint.sh
COPY bridge.sh /scripts/
RUN chmod +x /scripts/bridge.sh
RUN chmod +x /entrypoint.sh
RUN test -f /scripts/smartmon.sh
RUN test -f /scripts/nvme_metrics.sh
RUN test -f /scripts/ipmitool
ENTRYPOINT /entrypoint.sh