init: TTS Telegram Bot (edge-tts, Dmitry voice, admin panel)

This commit is contained in:
vrubel 2026-06-03 18:39:05 +00:00
commit ed3c1cf0ce
9 changed files with 498 additions and 0 deletions

10
app/Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY bot.py .
CMD ["python", "bot.py"]