minecraft-exporter/Dockerfile

10 lines
160 B
Docker
Raw Normal View History

2019-10-26 16:20:05 +02:00
from python:3
RUN pip install nbt mcrcon prometheus_client requests
COPY minecraft_exporter.py /
2019-10-28 13:47:57 +01:00
EXPOSE 8000
2019-10-26 16:20:05 +02:00
ENTRYPOINT ["python","minecraft_exporter.py"]