Sk4467 commited on
Commit
b87059f
1 Parent(s): 7d452ce

Docker File

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.8
2
+
3
+
4
+ COPY . /app
5
+
6
+ WORKDIR /app
7
+
8
+ RUN pip install -r requirements.txt
9
+
10
+ CMD python app.py