Aashu1308 commited on
Commit
4ccf3e1
·
1 Parent(s): 391b9f9

updated dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -8,10 +8,10 @@ COPY requirements.txt .
8
 
9
  RUN pip install --no-cache-dir -r requirements.txt
10
 
11
- COPY app_web.py .
12
 
13
  COPY model/ ./model/
14
 
15
  EXPOSE 7860
16
 
17
- CMD ["python", "app_web.py"]
 
8
 
9
  RUN pip install --no-cache-dir -r requirements.txt
10
 
11
+ COPY app.py .
12
 
13
  COPY model/ ./model/
14
 
15
  EXPOSE 7860
16
 
17
+ CMD ["python", "app.py"]