create upload bot

This commit is contained in:
Daniil Barodkin
2026-07-11 19:19:07 +03:00
parent 80da6a1581
commit 5cdf3e66c7
12 changed files with 191 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
# Берем легкий образ питона
FROM python:3.11-slim
# Устанавливаем ffmpeg (он критически нужен yt-dlp для извлечения mp3)
RUN apt-get update && \
apt-get install -y ffmpeg && \
rm -rf /var/lib/apt/lists/*
# Создаем рабочую папку
WORKDIR /app
# Копируем зависимости и устанавливаем их
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Копируем весь остальной код
COPY . .
# Запускаем бота
CMD ["python", "bot.py"]