tnewbury 0bfbeb978d
Various tweaks and updates (#8)
* Changed to use API rather than DB. Needs a lot of post change cleanup though

* Updated readme

* Grafana Dashboard

JSON markup for grafana dash

* Lots of tidying. Removal of old comments, added new comments.
Updated base version of the docker container. fixed some spelling

* Removed comments

---------

Co-authored-by: tnewbury <trevornewbury1@gmail.com>
Co-authored-by: tnewbury <tnewbury@notmymonkeys.circus>
2025-07-01 19:55:31 +07:00

7 lines
193 B
Docker

FROM python:3.11.8-slim-bookworm
WORKDIR /app
COPY tubearchivist-metrics/requirements.txt .
RUN pip3 install -r requirements.txt
COPY . .
CMD ["python3", "-u", "tubearchivist-metrics/main.py"]