ankban commited on
Commit
eb6ebfe
·
verified ·
1 Parent(s): e022003

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -12,12 +12,12 @@ ENV MPLCONFIGDIR=/tmp/matplotlib
12
 
13
  RUN mkdir -p /data/hf && chmod -R 777 /data/hf
14
 
15
- RUN python3 -c "from faster_whisper import WhisperModel; WhisperModel('base', compute_type='int8')"
16
-
17
  WORKDIR /app
18
  COPY requirements.txt .
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
 
 
21
  COPY . .
22
 
23
  CMD ["python", "app.py"]
 
12
 
13
  RUN mkdir -p /data/hf && chmod -R 777 /data/hf
14
 
 
 
15
  WORKDIR /app
16
  COPY requirements.txt .
17
  RUN pip install --no-cache-dir -r requirements.txt
18
 
19
+ RUN python3 -c "from faster_whisper import WhisperModel; WhisperModel('base', compute_type='int8')"
20
+
21
  COPY . .
22
 
23
  CMD ["python", "app.py"]