Update Dockerfile
Browse files- 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
|