minecraft-exporter/Dockerfile

9 lines
187 B
Docker
Raw Permalink 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
2022-01-23 20:01:04 +01:00
ENTRYPOINT ["python","-u","minecraft_exporter.py"]