init commit

This commit is contained in:
2025-08-14 02:38:56 +04:00
commit 5108bbbe76
14 changed files with 547 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM python:3.13-alpine
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "main.py"]