This repository has been archived on 2024-08-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
discord-bot/Dockerfile
2022-08-16 21:00:17 +02:00

10 lines
146 B
Docker

FROM python:3
FROM gorialis/discord.py
RUN pip install --upgrade python-dotenv
WORKDIR /usr/src/bot
COPY . .
CMD ["python3", "discord_bot.py"]