mirror of
https://github.com/insertapp/mmolbbot.git
synced 2025-07-01 14:27:03 +00:00
7 lines
133 B
Text
7 lines
133 B
Text
FROM python:3.13
|
|
|
|
WORKDIR /mmolbbot
|
|
COPY . /mmolbbot
|
|
RUN pip install -U --timeout 10000 -r requirements.txt
|
|
|
|
CMD ["python", "bot.py"] |