15 lines
398 B
YAML
15 lines
398 B
YAML
|
|
version: '3.8'
|
||
|
|
services:
|
||
|
|
app:
|
||
|
|
image: python:3.11-slim
|
||
|
|
working_dir: /app
|
||
|
|
volumes:
|
||
|
|
- ./:/app
|
||
|
|
command: bash -c "pip install -r requirements.txt && uvicorn interface.api_fastapi:app --host 0.0.0.0 --port 8000"
|
||
|
|
ports:
|
||
|
|
- "8000:8000"
|
||
|
|
environment:
|
||
|
|
- APP_MODE=fastapi
|
||
|
|
- PYTHONUNBUFFERED=1
|
||
|
|
# 可选:向量数据库服务或其他依赖可以在此添加
|