2021-12-05 08:02:09 +01:00
|
|
|
FROM python:3.8.12-alpine3.14
|
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"]
|