feat: init tg nodes, init web view

This commit is contained in:
2025-04-13 18:19:39 +03:00
parent 09c0cb6a44
commit b50b9b8980
11 changed files with 826 additions and 417 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM python:3.12-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5000
CMD ["python", "web/app.py"]