llvm-project/.ci/metrics/Dockerfile
Aiden Grossman 77c2b00553
[CI] Upstream metrics script and container definition (#117461)
This patch includes the script that pulls information from Github and
pushes it to Grafana. This is currently running in the cluster and
pushes information to
https://llvm.grafana.net/public-dashboards/6a1c1969b6794e0a8ee5d494c72ce2cd.
This script is designed to accept other jobs relatively easily and can
be easily modified to look at other metrics.
2024-11-29 11:15:44 -08:00

8 lines
165 B
Docker

FROM docker.io/python:3.12
COPY requirements.lock.txt ./
RUN pip3 install --no-cache-dir -r requirements.lock.txt
COPY metrics.py ./
CMD ["python3", "metrics.py"]