This commit is contained in:
2024-07-07 16:59:47 +02:00
commit 139430c2f8
7 changed files with 346 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:alpine
WORKDIR /aw-bot
COPY . /aw-bot
RUN pip install --no-cache-dir -r requirements.txt
COPY patterns.json /aw-bot
ENV BOT_TOKEN=""
CMD ["python", "aw.py"]