Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +5 -3
Dockerfile
CHANGED
|
@@ -3,10 +3,12 @@ FROM python:3.10-slim
|
|
| 3 |
RUN apt-get update && apt-get install -y ffmpeg libsndfile1 git && rm -rf /var/lib/apt/lists/*
|
| 4 |
|
| 5 |
RUN pip install --upgrade pip
|
| 6 |
-
RUN pip install
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
-
RUN pip install git+https://github.com/m-bain/whisperx.git@v3.1.
|
| 9 |
-
transformers==4.38.2 \
|
| 10 |
--force-reinstall
|
| 11 |
RUN pip install --no-cache-dir \
|
| 12 |
torch==2.1.2+cpu \
|
|
|
|
| 3 |
RUN apt-get update && apt-get install -y ffmpeg libsndfile1 git && rm -rf /var/lib/apt/lists/*
|
| 4 |
|
| 5 |
RUN pip install --upgrade pip
|
| 6 |
+
RUN pip install --no-cache-dir \
|
| 7 |
+
transformers==4.33.3 \
|
| 8 |
+
pyannote.audio==2.1.1 \
|
| 9 |
+
pytorch-lightning==1.9.4
|
| 10 |
|
| 11 |
+
RUN pip install git+https://github.com/m-bain/whisperx.git@v3.1.0 \
|
|
|
|
| 12 |
--force-reinstall
|
| 13 |
RUN pip install --no-cache-dir \
|
| 14 |
torch==2.1.2+cpu \
|