Spaces:
Sleeping
Sleeping
OpenManus Deployer commited on
Commit ·
0d8b6e3
1
Parent(s): 0191c17
fix: 修复Dockerfile中的文件名引用
Browse files- 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
|
| 12 |
-
COPY
|
| 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
|