add vector db

This commit is contained in:
2025-08-02 17:19:00 +00:00
parent 187bcc61bd
commit 4b70054e86
9 changed files with 444 additions and 6 deletions

View File

@@ -28,7 +28,7 @@ RUN pip install --upgrade pip && \
WORKDIR /app
# Копируем только requirements.txt для кэширования слоя
COPY offline_packages/requirements.txt /app/requirements.txt
COPY offline_packages/test.txt /app/requirements.txt
# Установка зависимостей (включая GPU-версии)
RUN pip install --no-cache-dir -r /app/requirements.txt
@@ -37,4 +37,4 @@ RUN pip install --no-cache-dir -r /app/requirements.txt
COPY app /app
# Запуск приложения
CMD ["python", "main.py"]
#CMD ["python", "main.py"]