2026-06-01 14:40:58 +00:00
|
|
|
|
# Быстрое обновление: добавляет 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 \
|
2026-06-01 15:54:25 +00:00
|
|
|
|
sentence-transformers>=3.0.0 \
|
|
|
|
|
|
bcrypt>=4.0.0 \
|
2026-06-01 16:16:23 +00:00
|
|
|
|
"python-jose[cryptography]" \
|
|
|
|
|
|
pymupdf>=1.24.0 \
|
|
|
|
|
|
openpyxl>=3.1.0 \
|
|
|
|
|
|
Pillow>=10.0.0 \
|
|
|
|
|
|
pytesseract>=0.3.10
|