minecraft-exporter/Dockerfile
2019-10-26 16:20:05 +02:00

10 lines
160 B
Docker

from python:3
RUN pip install nbt mcrcon prometheus_client requests
COPY minecraft_exporter.py /
EXPOSE 8001
ENTRYPOINT ["python","minecraft_exporter.py"]