kedar432 commited on
Commit
3c4f2e1
·
1 Parent(s): 465b605

copy files to workdir

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -4,8 +4,7 @@ WORKDIR /app
4
 
5
  RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
6
 
7
- COPY requirements.txt ./
8
- COPY app.py ./
9
 
10
  RUN pip3 install --no-cache-dir -r requirements.txt
11
 
 
4
 
5
  RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
6
 
7
+ COPY . ./
 
8
 
9
  RUN pip3 install --no-cache-dir -r requirements.txt
10