transcription/Dockerfile.rag
keboss-m 36c9be48be Add document ingestion pipeline, chat analytics modes, and auth fixes
Ingest MD/PDF/DOCX/XLSX into org-scoped documents with classify and RAG indexing. Add compare/timeline chat modes and UI upload. Filter WebSocket progress by user ACL and normalize admin project slugs consistently.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-01 19:16:23 +03:00

16 lines
516 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Быстрое обновление: добавляет RAG-зависимости к уже собранному образу с Whisper/PyTorch.
FROM transcription-transcription:latest
COPY pip.conf /etc/pip.conf
RUN pip install --no-cache-dir --timeout 300 \
lightrag-hku>=1.4.0 \
openai>=1.0.0 \
python-dotenv>=1.0.0 \
sentence-transformers>=3.0.0 \
bcrypt>=4.0.0 \
"python-jose[cryptography]" \
pymupdf>=1.24.0 \
openpyxl>=3.1.0 \
Pillow>=10.0.0 \
pytesseract>=0.3.10