This repository has been archived on 2026-07-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
raspi/archive/docker-exporter/Dockerfile.old
T
2026-07-13 11:28:52 +10:00

9 lines
144 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY exporter.py .
RUN pip install docker prometheus_client requests pyyaml
CMD ["python", "exporter.py"]