tuna2134 commited on
Commit
cc3d127
·
verified ·
1 Parent(s): dcc0616

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -1,5 +1,7 @@
1
  FROM python:3
2
 
 
3
  RUN pip install -r requirements.txt
4
 
 
5
  CMD ["python3", "app.py"]
 
1
  FROM python:3
2
 
3
+ COPY requirements.txt
4
  RUN pip install -r requirements.txt
5
 
6
+ COPY . .
7
  CMD ["python3", "app.py"]