10 lines
371 B
Docker
10 lines
371 B
Docker
|
|
# Быстрое обновление: добавляет 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
|