hstz commited on
Commit
0c42623
·
verified ·
1 Parent(s): fde4970

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -2
Dockerfile CHANGED
@@ -1,6 +1,10 @@
1
  FROM drfyup/fycursor:latest
2
  WORKDIR /app
 
 
 
3
  COPY .token .
4
  COPY .token-list .
5
- RUN chmod 600 /app/.token
6
- RUN chmod 600 /app/.token-list
 
 
1
  FROM drfyup/fycursor:latest
2
  WORKDIR /app
3
+
4
+ # 复制 token 文件和 token-list 文件 (如果需要)
5
+ # 这里假设你的 .token 和 .token-list 文件在 Dockerfile 所在的目录中
6
  COPY .token .
7
  COPY .token-list .
8
+
9
+ # 修改 token 文件和 token-list 文件的权限
10
+ RUN chmod 600 /app/.token /app/.token-list