İlk sürüm: Bot kodları Gitea'ya hazır

This commit is contained in:
2026-02-14 22:01:07 +03:00
commit 0d63f153c4
7 changed files with 208 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "bot.py"]