Psc_predict / Dockerfile
SEUyishu's picture
Upload 32 files
2279159 verified
raw
history blame contribute delete
532 Bytes
FROM python:3.10-slim
WORKDIR /app
# 安装系统依赖
RUN apt-get update && apt-get install -y \
gcc \
&& rm -rf /var/lib/apt/lists/*
# 复制依赖文件
COPY requirements.txt .
# 安装 Python 依赖
RUN pip install --no-cache-dir -r requirements.txt
# 复制应用代码
COPY server.py .
COPY models/ ./models/
# 设置环境变量
ENV MODEL_DIR=/app/models
ENV MCP_TRANSPORT=sse
ENV HOST=0.0.0.0
ENV PORT=7860
# 暴露端口
EXPOSE 7860
# 启动服务
CMD ["python", "server.py"]