Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +11 -0
Dockerfile
CHANGED
|
@@ -79,6 +79,17 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 79 |
|
| 80 |
RUN pip install --upgrade bitsandbytes
|
| 81 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 82 |
# Scripts e configs
|
| 83 |
COPY info.sh ./app/info.sh
|
| 84 |
COPY builder.sh ./app/builder.sh
|
|
|
|
| 79 |
|
| 80 |
RUN pip install --upgrade bitsandbytes
|
| 81 |
|
| 82 |
+
|
| 83 |
+
RUN apt-get update && apt-get install -y curl && \
|
| 84 |
+
echo "Instalando dependências .whl customizadas..." && \
|
| 85 |
+
pip install --no-cache-dir \
|
| 86 |
+
"https://huggingface.co/euIaxs22/Aduc-sdr/resolve/main/apex-0.1-cp310-cp310-linux_x86_64.whl" \
|
| 87 |
+
"https://huggingface.co/euIaxs22/Aduc-sdr/resolve/main/dropout_layer_norm-0.1-cp310-cp310-linux_x86_64.whl" && \
|
| 88 |
+
apt-get purge -y curl && apt-get autoremove -y && rm -rf /var/lib/apt/lists/*
|
| 89 |
+
|
| 90 |
+
# ====================================================================
|
| 91 |
+
|
| 92 |
+
|
| 93 |
# Scripts e configs
|
| 94 |
COPY info.sh ./app/info.sh
|
| 95 |
COPY builder.sh ./app/builder.sh
|