16 lines
580 B
Docker
16 lines
580 B
Docker
FROM python:3.10-slim
|
||
|
||
WORKDIR /app
|
||
|
||
# 后端依赖(fastapi/uvicorn/sqlalchemy/pypdf/python-docx/openpyxl 等)均为纯 Python wheel,
|
||
# 无需 gcc 等编译链,故跳过 apt 安装以加快构建并减小镜像体积。
|
||
COPY requirements.txt .
|
||
RUN pip install --no-cache-dir --timeout 120 --retries 10 -i https://pypi.tuna.tsinghua.edu.cn/simple -r requirements.txt
|
||
|
||
COPY . .
|
||
|
||
# 后端使用 SQLite(avatar.db 落在 /app 内),平铺结构以 `uvicorn main:app` 启动
|
||
EXPOSE 8000
|
||
|
||
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000", "--workers", "1"]
|