Fix bot polling, downloads, and file delivery

This commit is contained in:
vrubel 2026-01-28 14:45:56 +03:00
commit 8a21cbe18a
16 changed files with 1712 additions and 0 deletions

26
Dockerfile Normal file
View file

@ -0,0 +1,26 @@
FROM python:3.11-slim
# Установка системных зависимостей
RUN apt-get update && apt-get install -y \
ffmpeg \
nodejs \
npm \
curl \
&& rm -rf /var/lib/apt/lists/*
# Установка yt-dlp
RUN pip install --no-cache-dir yt-dlp
# Установка зависимостей Python
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Копирование кода приложения
COPY app/ /app/app/
WORKDIR /app
# Создание рабочей директории
RUN mkdir -p /data
# Запуск приложения
CMD ["python", "-m", "app.main"]