Archived
9 lines
144 B
Docker
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"]
|