vilarin commited on
Commit
1461718
1 Parent(s): 754c16c

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ghcr.io/open-webui/open-webui:main
2
+
3
+ WORKDIR /app/backend
4
+
5
+ RUN mkdir -p /app/static
6
+ RUN chmod -R 777 /app/static
7
+
8
+ EXPOSE 7860
9
+
10
+ CMD ["bash", "start.sh"]