Niv03 commited on
Commit
370c70b
·
1 Parent(s): 97eb399

edit dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -4
Dockerfile CHANGED
@@ -1,10 +1,8 @@
1
  FROM python
2
 
3
- WORKDIR app/
4
 
5
- COPY . app/
6
-
7
- RUN ls
8
 
9
  RUN pip install --trusted-host pypi.python.org -r requirements.txt
10
 
 
1
  FROM python
2
 
3
+ WORKDIR /app
4
 
5
+ COPY . /app
 
 
6
 
7
  RUN pip install --trusted-host pypi.python.org -r requirements.txt
8