Add DTEK notification bot with Docker configuration and requirements

This commit is contained in:
2025-11-12 13:37:28 +01:00
commit eb0ad4e679
5 changed files with 356 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM python:3.11-slim
WORKDIR /app
# Установка зависимостей
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Копирование кода
COPY main.py .
# Запуск бота
CMD ["python", "-u", "main.py"]