bot: Initial add
All checks were successful
Build Docker / Build Master (push) Successful in 23s
Build Docker / Build Bot (push) Successful in 37s

This commit is contained in:
2023-08-16 17:43:30 +10:00
parent 14ee680583
commit 036ddc7aa6
5 changed files with 90 additions and 1 deletions

6
discord-bot/Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM python:3.10-bullseye
COPY requirements.txt /app/
WORKDIR /app
RUN pip install -r requirements.txt
COPY . .
CMD ["python3", "bot.py"]