Spaces:
Runtime error
Runtime error
File size: 299 Bytes
95cbdfb 44266f3 95cbdfb 44266f3 95cbdfb 44266f3 95cbdfb 44266f3 8963841 179d40f 95cbdfb 44266f3 95cbdfb 907044c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # 使用官方 Python 镜像
FROM python:3.9-slim
# 设置工作目录
WORKDIR /app
# 拷贝依赖和代码
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN chmod +x ./start.sh
# 设置默认端口
ENV PORT=7860
# 启动 FastAPI 服务
CMD ["./start.sh"] |