cheesecz commited on
Commit
d1ffd26
·
verified ·
1 Parent(s): 74c6bf6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -4,9 +4,9 @@ RUN apt-get update && apt-get install -y ffmpeg
4
 
5
  WORKDIR /code
6
 
7
- COPY requirements.txt .
8
  RUN pip install --no-cache-dir -r requirements.txt
9
 
10
- COPY app.py .
11
 
12
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
4
 
5
  WORKDIR /code
6
 
7
+ COPY requirements.txt ./
8
  RUN pip install --no-cache-dir -r requirements.txt
9
 
10
+ COPY app.py ./
11
 
12
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]