eaedk commited on
Commit
38bebb3
1 Parent(s): 61bb1d0

dockerfile done

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+ WORKDIR /app
4
+
5
+
6
+ COPY requirements.txt ./
7
+
8
+ RUN pip install -r requirements.txt
9
+
10
+ COPY app.py ./
11
+
12
+ EXPOSE 7860
13
+
14
+ CMD [ "python", "app.py" ]