process-over-profit-bot/Dockerfile

4 lines
106 B
Docker

FROM python:3.10
ADD bot.py .
RUN pip install discord.py python-dotenv requests
CMD ["python", "./bot.py"]