Merge commit '026c837b919ab4380e8a6e6c052364bbf9bbe8a3' as 'core'

This commit is contained in:
Du Wenbo
2026-04-04 18:17:10 +08:00
227 changed files with 39179 additions and 0 deletions

10
core/backend/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]