KurtDu commited on
Commit
27862d2
1 Parent(s): 43e7e01

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +17 -0
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # 使用适合的基础镜像,例如 python:3.9-slim
2
+ FROM python:3.9-slim
3
+
4
+ # 设置工作目录
5
+ WORKDIR /app
6
+
7
+ # 复制项目文件
8
+ COPY . /app
9
+
10
+ # 安装依赖
11
+ RUN pip install -r requirements.txt
12
+
13
+ # 暴露端口(根据 Hugging Face Space 要求,通常是 7860 或 8080)
14
+ EXPOSE 7860
15
+
16
+ # 启动命令
17
+ CMD ["python", "app.py"]