maceter636 commited on
Commit
1935f15
·
1 Parent(s): 1223c4e

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from python:3.10
2
+
3
+ workdir /app
4
+
5
+ copy requirements.txt .
6
+ run pip install -r requirements.txt
7
+
8
+ run mkdir /.cache && chmod 777 /.cache
9
+ run mkdir .chroma && chmod 777 .chroma
10
+ copy . .
11
+ expose 7860
12
+
13
+ cmd ["python", "server.py"]