OpenManus Deployer commited on
Commit
0d8b6e3
·
1 Parent(s): 0191c17

fix: 修复Dockerfile中的文件名引用

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -8,8 +8,8 @@ RUN apt-get update && apt-get install -y \
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
  # 复制应用文件
11
- COPY hf_spaces_app_mysql.py app.py
12
- COPY hf_spaces_requirements.txt requirements.txt
13
 
14
  # 安装Python依赖
15
  RUN pip install --no-cache-dir -r requirements.txt
 
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
  # 复制应用文件
11
+ COPY app.py app.py
12
+ COPY requirements.txt requirements.txt
13
 
14
  # 安装Python依赖
15
  RUN pip install --no-cache-dir -r requirements.txt