minecraft-exporter/Dockerfile
Joshi 3d214680fe
Update Dockerfile
fix testport
2019-10-28 13:47:57 +01:00

10 lines
160 B
Docker

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