| 12345678910111213141516171819202122232425262728 |
- FROM registry.cn-hangzhou.aliyuncs.com/stuuudy/python:3.13-slim
- WORKDIR /app
- # 安装系统依赖
- RUN apt-get update && apt-get install -y --no-install-recommends \
- gcc \
- curl \
- && rm -rf /var/lib/apt/lists/*
- # 复制依赖文件
- COPY requirements.txt .
- # 安装 Python 依赖
- RUN pip install --no-cache-dir -r requirements.txt
- # 复制项目代码
- COPY agent/ ./agent/
- COPY examples/content_finder/ ./examples/content_finder/
- # 设置工作目录
- WORKDIR /app/examples/content_finder
- # 暴露端口
- EXPOSE 8080
- # 启动命令
- CMD ["python", "server.py"]
|