BG5 commited on
Commit
e375a4a
·
verified ·
1 Parent(s): f1046c7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -54,7 +54,7 @@ COPY . .
54
  # 更改目录和文件的所有者
55
  RUN chown -R appuser:appuser /app
56
  # 安装任何需要的包,使用 --ignore-installed 选项
57
- RUN pip install --no-cache-dir --ignore-installed -r requirements.txt
58
  EXPOSE 7860
59
 
60
  # 使用 ENTRYPOINT 和 CMD 组合来启动 Webmin
 
54
  # 更改目录和文件的所有者
55
  RUN chown -R appuser:appuser /app
56
  # 安装任何需要的包,使用 --ignore-installed 选项
57
+ RUN pip install --no-cache-dir --ignore-installed --break-system-packages -r requirements.txt
58
  EXPOSE 7860
59
 
60
  # 使用 ENTRYPOINT 和 CMD 组合来启动 Webmin