bot: initial code
All checks were successful
Build Docker / Build Docker (push) Successful in 1m30s

This commit is contained in:
2023-08-11 15:55:44 +10:00
parent a664de2e3a
commit 790872f92c
5 changed files with 81 additions and 0 deletions

6
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"]