mc exporter

This commit is contained in:
2025-07-26 15:25:18 +02:00
parent 0e0efef54e
commit cac68366d5
4 changed files with 469 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
FROM python:3.10-alpine
COPY requirements.txt minecraft_exporter.py /
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
ENTRYPOINT ["python","-u","minecraft_exporter.py"]