rcon, minecraft exporter

This commit is contained in:
2024-04-01 18:10:45 +02:00
parent 2f7dee8ba4
commit 10b9caf30a
7 changed files with 2072 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"]