Release 1.0.0

This commit is contained in:
2026-03-12 21:45:01 +00:00
parent 28be3105b6
commit b2a9f74f59
12 changed files with 1028 additions and 522 deletions
+2 -2
View File
@@ -2,7 +2,7 @@ FROM python:3.11-slim
WORKDIR /app
# Install dependencies
# Install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
@@ -11,6 +11,6 @@ COPY . .
# Create DB directory
RUN mkdir -p DB
ENV PYTHONUNBUFFERED=1
# Run the bot
CMD ["python", "main.py"]