fix: Correction Docker et dépendances pour déploiement

- Correction Dockerfile host-api (chemin COPY relatif)
- Suppression dépendance python-alto non trouvée
- Mise à jour image AnythingLLM vers mintplexlabs/anythingllm:latest
- Amélioration robustesse tests et gestion erreurs
This commit is contained in:
Nicolas Cantu 2025-09-10 17:40:06 +02:00
parent 0c8c0f1c39
commit 88976c58ac
3 changed files with 4 additions and 4 deletions

View File

@ -7,6 +7,4 @@ WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY ../../services/host_api /app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]

View File

@ -19,7 +19,6 @@ pytesseract==0.3.13
numpy==2.0.1
pillow==10.4.0
pdfminer.six==20240706
python-alto>=0.4.0
rapidfuzz==3.9.6
aiohttp==3.9.1
pdf2image==1.17.0

View File

@ -36,13 +36,15 @@ services:
restart: unless-stopped
anythingsqlite:
image: kevincharm/anythingllm:latest
image: mintplexlabs/anythingllm:latest
environment:
- DISABLE_AUTH=true
depends_on:
- ollama
ports:
- "3001:3001"
volumes:
- anythingllm:/app/server/storage
container_name: anythingllm
restart: unless-stopped
@ -156,3 +158,4 @@ volumes:
opensearch:
prometheus:
grafana:
anythingllm: