FROM python:3
FROM gorialis/discord.py

RUN pip install --upgrade python-dotenv

WORKDIR /usr/src/bot

COPY . .

CMD ["python3", "discord_bot.py"]