Start-GPT commited on
Commit
95167de
1 Parent(s): e39e59c

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.7
2
+
3
+ WORKDIR /code
4
+
5
+ COPY ./requirements.txt /code/requirements.txt
6
+
7
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
+
9
+ RUN mkdir -p /.cache
10
+
11
+ RUN chmod 777 /.cache
12
+
13
+ COPY . .
14
+
15
+ CMD ["python", "server/main.py", "--port", "7860"]