FROM arm32v7/python:3.10-alpine@sha256:6ee764ac3084eb137c2c0a16b89a5a93606633bf22a46aea61ee45f8eab1db3a LABEL maintainer="Robert Kaussow " LABEL org.opencontainers.image.authors="Robert Kaussow " LABEL org.opencontainers.image.title="prometheus-pve-sd" LABEL org.opencontainers.image.url="https://github.com/thegeeklab/prometheus-pve-sd/" LABEL org.opencontainers.image.source="https://github.com/thegeeklab/prometheus-pve-sd/" LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/prometheus-pve-sd/" ENV PY_COLORS=1 ADD dist/prometheus_pve_sd-*.whl / RUN apk update && \ pip install --upgrade --no-cache-dir pip && \ pip install --no-cache-dir $(find / -name "prometheus_pve_sd-*.whl") && \ rm -f prometheus_pve_sd-*.whl && \ rm -rf /var/cache/apk/* && \ rm -rf /root/.cache/ USER root CMD [] ENTRYPOINT ["/usr/local/bin/prometheus-pve-sd"]