Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +5 -10
Dockerfile
CHANGED
|
@@ -95,20 +95,15 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 95 |
RUN pip install --upgrade bitsandbytes
|
| 96 |
|
| 97 |
# Instala wheels customizados (Apex, etc.)
|
| 98 |
-
RUN echo "Installing custom wheels..." && \
|
| 99 |
-
pip install --no-cache-dir \
|
| 100 |
-
"https://huggingface.co/euIaxs22/Aduc-sdr/resolve/main/apex-0.1-cp310-cp310-linux_x86_64.whl" \
|
| 101 |
-
"https://huggingface.co/euIaxs22/Aduc-sdr/resolve/main/dropout_layer_norm-0.1-cp310-cp310-linux_x86_64.whl"
|
| 102 |
-
|
| 103 |
# Instala q8_kernels
|
| 104 |
RUN pip install --no-cache-dir \
|
| 105 |
"https://huggingface.co/euIaxs22/Aduc-sdr/resolve/main/q8_kernels-0.0.5-cp310-cp310-linux_x86_64.whl"
|
| 106 |
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
# =============================================================================
|
| 113 |
# 5. C贸pia do C贸digo-Fonte e Configura莽茫o Final
|
| 114 |
# =============================================================================
|
|
|
|
| 95 |
RUN pip install --upgrade bitsandbytes
|
| 96 |
|
| 97 |
# Instala wheels customizados (Apex, etc.)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 98 |
# Instala q8_kernels
|
| 99 |
RUN pip install --no-cache-dir \
|
| 100 |
"https://huggingface.co/euIaxs22/Aduc-sdr/resolve/main/q8_kernels-0.0.5-cp310-cp310-linux_x86_64.whl"
|
| 101 |
|
| 102 |
+
RUN echo "Installing custom wheels..." && \
|
| 103 |
+
pip install --no-cache-dir \
|
| 104 |
+
"https://huggingface.co/euIaxs22/Aduc-sdr/resolve/main/apex-0.1-cp310-cp310-linux_x86_64.whl" \
|
| 105 |
+
"https://huggingface.co/euIaxs22/Aduc-sdr/resolve/main/dropout_layer_norm-0.1-cp310-cp310-linux_x86_64.whl"
|
| 106 |
+
|
| 107 |
# =============================================================================
|
| 108 |
# 5. C贸pia do C贸digo-Fonte e Configura莽茫o Final
|
| 109 |
# =============================================================================
|