mistpe commited on
Commit
487cb09
·
verified ·
1 Parent(s): 32f44e3

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM ghcr.io/open-webui/open-webui:main
2
+
3
+ # 复制本地的 webui.db 到容器中
4
+ COPY webui.db ./data/webui.db
5
+
6
+ # 设置适当的权限
7
+ RUN chmod -R 777 ./data