Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
|
@@ -1,6 +1,5 @@
|
|
| 1 |
FROM pytorch/pytorch:2.1.0-cuda11.8-cudnn8-runtime
|
| 2 |
|
| 3 |
-
# Prevent tzdata from asking for region/city
|
| 4 |
ENV DEBIAN_FRONTEND=noninteractive
|
| 5 |
ENV TZ=Africa/Kampala
|
| 6 |
|
|
@@ -8,8 +7,7 @@ RUN apt-get update && \
|
|
| 8 |
apt-get install -y --no-install-recommends tzdata ffmpeg git && \
|
| 9 |
rm -rf /var/lib/apt/lists/*
|
| 10 |
|
| 11 |
-
|
| 12 |
-
RUN pip install --no-cache-dir speechbrain==0.5.14 gradio==3.50.2 torchaudio==2.1.0
|
| 13 |
|
| 14 |
COPY app.py /app/app.py
|
| 15 |
|
|
|
|
| 1 |
FROM pytorch/pytorch:2.1.0-cuda11.8-cudnn8-runtime
|
| 2 |
|
|
|
|
| 3 |
ENV DEBIAN_FRONTEND=noninteractive
|
| 4 |
ENV TZ=Africa/Kampala
|
| 5 |
|
|
|
|
| 7 |
apt-get install -y --no-install-recommends tzdata ffmpeg git && \
|
| 8 |
rm -rf /var/lib/apt/lists/*
|
| 9 |
|
| 10 |
+
RUN pip install --no-cache-dir speechbrain==0.5.14 gradio==3.50.2 torchaudio==2.1.0 huggingface_hub==0.14.1
|
|
|
|
| 11 |
|
| 12 |
COPY app.py /app/app.py
|
| 13 |
|