46 lines
1010 B
Docker
46 lines
1010 B
Docker
# 使用Python 3.12官方镜像作为基础镜像
|
|
FROM python:3.12-slim
|
|
|
|
# 设置工作目录
|
|
WORKDIR /app
|
|
|
|
# 设置环境变量
|
|
ENV PYTHONPATH=/app
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
# 安装系统依赖
|
|
RUN sed -i 's|http://deb.debian.org|http://mirrors.aliyun.com|g' /etc/apt/sources.list.d/debian.sources && \
|
|
apt-get update && apt-get install -y \
|
|
curl \
|
|
wget \
|
|
git \
|
|
nodejs \
|
|
npm \
|
|
ripgrep \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# 全局安装mcp-ripgrep
|
|
RUN npm install -g mcp-ripgrep
|
|
|
|
# 复制requirements文件并安装Python依赖
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -i https://mirrors.aliyun.com/pypi/simple/ -r requirements.txt
|
|
|
|
# 复制应用代码
|
|
COPY . .
|
|
|
|
# 创建必要的目录
|
|
RUN mkdir -p /app/projects
|
|
RUN mkdir -p /app/public
|
|
|
|
|
|
# 暴露端口
|
|
EXPOSE 8001
|
|
|
|
# 健康检查
|
|
HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \
|
|
CMD curl -f http://localhost:8001/api/health"|| exit 1
|
|
|
|
# 启动命令
|
|
CMD ["python", "fastapi_app.py"]
|