Upload Dockerfile with huggingface_hub
Browse files- Dockerfile +8 -3
Dockerfile
CHANGED
|
@@ -11,9 +11,10 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
|
| 11 |
|
| 12 |
# Install Python dependencies
|
| 13 |
RUN pip install --no-cache-dir \
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
|
|
|
| 17 |
fastapi \
|
| 18 |
uvicorn[standard] \
|
| 19 |
requests \
|
|
@@ -22,6 +23,10 @@ RUN pip install --no-cache-dir \
|
|
| 22 |
huggingface-hub \
|
| 23 |
protobuf \
|
| 24 |
accelerate \
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
pydantic
|
| 26 |
|
| 27 |
# Copy application
|
|
|
|
| 11 |
|
| 12 |
# Install Python dependencies
|
| 13 |
RUN pip install --no-cache-dir \
|
| 14 |
+
faster-whisper \
|
| 15 |
+
deep-translator \
|
| 16 |
+
transformers \
|
| 17 |
+
coqui-tts \
|
| 18 |
fastapi \
|
| 19 |
uvicorn[standard] \
|
| 20 |
requests \
|
|
|
|
| 23 |
huggingface-hub \
|
| 24 |
protobuf \
|
| 25 |
accelerate \
|
| 26 |
+
torch \
|
| 27 |
+
torchaudio \
|
| 28 |
+
deepfilternet \
|
| 29 |
+
soundfile \
|
| 30 |
pydantic
|
| 31 |
|
| 32 |
# Copy application
|