Spaces:
Sleeping
Sleeping
File size: 230 Bytes
4a25bfa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM python:3.11-slim
WORKDIR /app
# 安装依赖
COPY requirement.txt .
RUN pip install --no-cache-dir -r requirement.txt
# 复制应用代码
COPY app.py .
# 暴露端口
EXPOSE 7860
# 启动应用
CMD ["python", "app.py"] |