Fabio Grasso commited on
Commit
839bbc6
1 Parent(s): e543ecb

fix: workdir

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -1,15 +1,17 @@
1
  FROM python:3.9
2
 
 
3
 
4
  RUN pip install --user --upgrade pip
5
 
6
  RUN apt-get update && apt-get install -y ffmpeg
7
 
8
- COPY . .
9
 
10
 
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
 
13
 
14
  ENV PYTHONPATH "${PYTHONPATH}:/app"
15
 
 
1
  FROM python:3.9
2
 
3
+ WORKDIR /src
4
 
5
  RUN pip install --user --upgrade pip
6
 
7
  RUN apt-get update && apt-get install -y ffmpeg
8
 
9
+ COPY requirements.txt ./
10
 
11
 
12
  RUN pip install --no-cache-dir -r requirements.txt
13
 
14
+ COPY . .
15
 
16
  ENV PYTHONPATH "${PYTHONPATH}:/app"
17