Spaces:
Runtime error
Runtime error
File size: 238 Bytes
5f3b20a |
1 2 3 4 5 6 7 8 9 10 11 12 |
version: '3.8'
services:
rag-api:
build: .
ports:
- "8500:8500"
volumes:
- ./dataset:/app/dataset
environment:
- PYTHONPATH=/app
command: uvicorn rag_server:app --host 0.0.0.0 --port 8500 --reload |