4 lines
186 B
Docker
4 lines
186 B
Docker
FROM python:3.12-slim
|
|
RUN pip install docker prometheus-client
|
|
COPY exporter.py .
|
|
CMD ["python", "exporter.py"] |