最后一版

This commit is contained in:
ZhuJW
2026-03-13 21:09:44 +08:00
parent 8584821f36
commit 265cb3a4e6
7 changed files with 244 additions and 183 deletions

View File

@@ -1,46 +1,36 @@
# 多阶段构建 - SDLC Agent Demo
FROM python:3.11-slim as builder
# SDLC Agent Demo - Dockerfile
# 基于 CrewAI + Qwen3.5-flash + FastAPI 的多智能体软件交付系统
# 设置工作目录
WORKDIR /app
FROM python:3.11-slim
# 设置环境变量
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1 \
PIP_DISABLE_PIP_VERSION_CHECK=1
# 安装依赖
COPY requirements.txt .
RUN pip install --user --no-cache-dir -r requirements.txt
# 运行阶段
FROM python:3.11-slim
PIP_DISABLE_PIP_VERSION_CHECK=1 \
PYTHONPATH=/app
# 设置工作目录
WORKDIR /app
# 从 builder 阶段复制安装的包
COPY --from=builder /root/.local /root/.local
# 安装系统依赖
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc \
&& rm -rf /var/lib/apt/lists/*
# 确保脚本路径在 PATH 中
ENV PATH=/root/.local/bin:$PATH \
PYTHONPATH=/app
# 安装 Python 依赖
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# 复制应用代码
COPY . .
# 创建非 root 用户
RUN useradd -m -u 1000 appuser && \
chown -R appuser:appuser /app
USER appuser
# 暴露端口
EXPOSE 8000
EXPOSE 8080
# 健康检查
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD python -c "import httpx; httpx.get('http://localhost:8000/health')" || exit 1
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:8080/docs')" || exit 1
# 启动命令
CMD ["python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
CMD ["python", "main.py"]