2023-04-11 11:55:52 +02:00
|
|
|
FROM python:3.11.3-alpine
|
2023-01-03 22:40:31 +01:00
|
|
|
# Or any preferred Python version.
|
|
|
|
ADD example_bot.py .
|
|
|
|
RUN pip install discord.py
|
2023-01-03 23:23:11 +01:00
|
|
|
CMD [“python3”, “./example_bot.py”]
|
2023-01-03 22:40:31 +01:00
|
|
|
# Or enter the name of your unique directory and parameter set.
|