2021-11-28 13:10:56 +00:00
|
|
|
FROM arm64v8/python:3.10-alpine@sha256:2c3e3fbd7e36aca4eee1e95e0d7c12022e580053dc61f7a86117bc666203686e
|
2021-06-09 18:44:10 +00:00
|
|
|
|
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
|
|
|
|
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
|
|
|
|
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
|
|
|
|
|
2021-06-09 21:19:11 +00:00
|
|
|
ADD dist/prometheus_pve_sd-*.whl /
|
2021-06-09 18:44:10 +00:00
|
|
|
|
|
|
|
RUN apk update && \
|
|
|
|
pip install --upgrade --no-cache-dir pip && \
|
2021-06-09 21:19:11 +00:00
|
|
|
pip install --no-cache-dir $(find / -name "prometheus_pve_sd-*.whl") && \
|
|
|
|
rm -f prometheus_pve_sd-*.whl && \
|
2021-06-09 18:44:10 +00:00
|
|
|
rm -rf /var/cache/apk/* && \
|
|
|
|
rm -rf /root/.cache/
|
|
|
|
|
|
|
|
USER root
|
|
|
|
CMD []
|
|
|
|
ENTRYPOINT ["/usr/local/bin/prometheus-pve-sd"]
|