feat: DB for patterns

This commit is contained in:
2025-03-05 21:44:50 +01:00
parent d35bc21d89
commit a5b7872d3f
7 changed files with 137 additions and 10 deletions

View File

@@ -2,13 +2,17 @@ FROM python:alpine
WORKDIR /aw-bot
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY bot /aw-bot/bot
COPY aw.py .
COPY patterns.json .
COPY bot /aw-bot/bot
COPY database /aw-bot/database
COPY aw.py .
COPY patterns.json .
ENV BOT_TOKEN=""
# Where the database will be stored
ENV BOT_DATA_DIR = ""
CMD ["python", "aw.py"]