0vergeared commited on
Commit
f145832
·
verified ·
1 Parent(s): 7deb33c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,8 +5,8 @@ WORKDIR /app
5
  COPY requirements.txt requirements.txt
6
  RUN pip install --no-cache-dir -r requirements.txt
7
 
8
- COPY app /app
9
 
10
  EXPOSE 7860
11
 
12
- CMD ["python", "app/app.py"]
 
5
  COPY requirements.txt requirements.txt
6
  RUN pip install --no-cache-dir -r requirements.txt
7
 
8
+ COPY app.py /app/app.py
9
 
10
  EXPOSE 7860
11
 
12
+ CMD ["python", "app.py"]