Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
|
@@ -12,6 +12,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 12 |
curl \
|
| 13 |
libsndfile1 \
|
| 14 |
ffmpeg \
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
| 16 |
|
| 17 |
|
|
@@ -22,6 +26,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 22 |
RUN pip install --no-cache-dir \
|
| 23 |
"yarngpt @ git+https://github.com/saheedniyi02/yarngpt.git"
|
| 24 |
|
|
|
|
| 25 |
RUN wget -q \
|
| 26 |
https://huggingface.co/novateur/WavTokenizer-medium-speech-75token/resolve/main/wavtokenizer_mediumdata_frame75_3s_nq1_code4096_dim512_kmeans200_attn.yaml \
|
| 27 |
-O /app/wavtokenizer_config.yaml
|
|
|
|
| 12 |
curl \
|
| 13 |
libsndfile1 \
|
| 14 |
ffmpeg \
|
| 15 |
+
gcc \
|
| 16 |
+
g++ \
|
| 17 |
+
build-essential \
|
| 18 |
+
python3-dev \
|
| 19 |
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
| 20 |
|
| 21 |
|
|
|
|
| 26 |
RUN pip install --no-cache-dir \
|
| 27 |
"yarngpt @ git+https://github.com/saheedniyi02/yarngpt.git"
|
| 28 |
|
| 29 |
+
|
| 30 |
RUN wget -q \
|
| 31 |
https://huggingface.co/novateur/WavTokenizer-medium-speech-75token/resolve/main/wavtokenizer_mediumdata_frame75_3s_nq1_code4096_dim512_kmeans200_attn.yaml \
|
| 32 |
-O /app/wavtokenizer_config.yaml
|