minecraft-exporter/Dockerfile

9 lines
182 B
Docker
Raw Normal View History

FROM python:3.10-alpine
2019-10-26 16:20:05 +02:00
2020-03-07 12:09:24 +01:00
COPY requirements.txt minecraft_exporter.py /
RUN pip install --no-cache-dir -r requirements.txt
2019-10-26 16:20:05 +02:00
2019-10-28 13:47:57 +01:00
EXPOSE 8000
2019-10-26 16:20:05 +02:00
ENTRYPOINT ["python","minecraft_exporter.py"]