Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
|
@@ -5,8 +5,14 @@ RUN apt-get update && apt-get install -y \
|
|
| 5 |
git wget ffmpeg libsndfile1 unzip build-essential \
|
| 6 |
&& rm -rf /var/lib/apt/lists/*
|
| 7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
# Configurar Hugging Face cache y variables de entorno
|
| 9 |
|
|
|
|
| 10 |
ENV HF_HOME=/tmp/hf_cache
|
| 11 |
ENV TRANSFORMERS_CACHE=/tmp/hf_cache
|
| 12 |
ENV HF_HUB_CACHE=/tmp/hf_cache
|
|
|
|
| 5 |
git wget ffmpeg libsndfile1 unzip build-essential \
|
| 6 |
&& rm -rf /var/lib/apt/lists/*
|
| 7 |
|
| 8 |
+
ENV GIT_AUTHOR_NAME="sob111"
|
| 9 |
+
ENV GIT_AUTHOR_EMAIL="[email protected]"
|
| 10 |
+
ENV GIT_COMMITTER_NAME="sob111"
|
| 11 |
+
ENV GIT_COMMITTER_EMAIL="[email protected]"
|
| 12 |
+
|
| 13 |
# Configurar Hugging Face cache y variables de entorno
|
| 14 |
|
| 15 |
+
ENV HOME="/home/user"
|
| 16 |
ENV HF_HOME=/tmp/hf_cache
|
| 17 |
ENV TRANSFORMERS_CACHE=/tmp/hf_cache
|
| 18 |
ENV HF_HUB_CACHE=/tmp/hf_cache
|