This commit is contained in:
2024-07-24 14:46:46 +02:00
parent ce267219fa
commit 47d44643c3
16 changed files with 353 additions and 0 deletions

8
bot/Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.12.4
ADD requirements.txt .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
ADD . .
CMD ["python", "main.py"]