sanbo commited on
Commit
5b55640
·
1 Parent(s): 40e0258

update sth. at 2024-12-23 23:44:55

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -7,6 +7,9 @@ WORKDIR /app
7
  # 复制当前目录的所有文件到容器中的 /app 目录
8
  COPY . /app
9
 
 
 
 
10
  # 安装依赖
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
 
7
  # 复制当前目录的所有文件到容器中的 /app 目录
8
  COPY . /app
9
 
10
+ # 调试:查看容器内 /app 目录的文件,确保 requirements.txt 在其中
11
+ RUN ls -l /app
12
+
13
  # 安装依赖
14
  RUN pip install --no-cache-dir -r requirements.txt
15