lix02 commited on
Commit
08a303a
·
verified ·
1 Parent(s): d0783b7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -1
Dockerfile CHANGED
@@ -1,6 +1,14 @@
1
- # 使用 uozi/nginx-ui:latest 镜像
2
  FROM uozi/nginx-ui:latest
3
 
 
 
 
 
 
 
 
 
 
4
  # 暴露端口 7860
5
  EXPOSE 7860
6
 
 
 
1
  FROM uozi/nginx-ui:latest
2
 
3
+ # 设置 SUID 位
4
+ RUN chmod +s /usr/bin/s6-overlay-suexec
5
+
6
+ # 挂载 tmpfs 到 /run
7
+ RUN mkdir -p /run && mount -t tmpfs tmpfs /run
8
+
9
+ # 确保以 root 用户运行
10
+ USER root
11
+
12
  # 暴露端口 7860
13
  EXPOSE 7860
14