# 使用 Python 3.11 slim 镜像作为基础镜像 FROM python:3.11-slim # 设置工作目录 WORKDIR /app # 安装系统依赖 RUN apt-get update && apt-get install -y \ build-essential \ curl \ software-properties-common \ git \ && rm -rf /var/lib/apt/lists/* # 复制依赖文件 COPY requirements.txt ./ # 安装 Python 依赖 RUN pip install --no-cache-dir -r requirements.txt # 复制应用代码 COPY app/ ./app/ COPY utils/ ./utils/ COPY app.py ./ # 暴露 Streamlit 默认端口 EXPOSE 7860 ENV STREAMLIT_BROWSER_GATHER_USAGE_STATS=false # 设置环境变量 ENV PYTHONPATH=/app ENV STREAMLIT_SERVER_PORT=7860 ENV STREAMLIT_SERVER_ADDRESS=0.0.0.0 # 启动命令 ENTRYPOINT ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]