Discord_test/Dockerfile

6 lines
217 B
Docker
Raw Permalink Normal View History

2023-04-11 11:55:52 +02:00
FROM python:3.11.3-alpine
# 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]
# Or enter the name of your unique directory and parameter set.