blob: 80f1c64e3e61b63bde33ea86c7ed778f486ed109 [file] [log] [blame]
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"]