Leri777 commited on
Commit
d953685
·
verified ·
1 Parent(s): 6414e2f

Create dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile +9 -0
dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+ WORKDIR /app
4
+ COPY requirements.txt /app/
5
+ RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
6
+
7
+ COPY . /app
8
+
9
+ CMD ["python", "app.py"]