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