6 lines
No EOL
217 B
Docker
6 lines
No EOL
217 B
Docker
FROM python:3.11.3-alpine
|
|
# Or any preferred Python version.
|
|
ADD example_bot.py .
|
|
RUN pip install discord.py
|
|
CMD [“python3”, “./example_bot.py”]
|
|
# Or enter the name of your unique directory and parameter set. |