Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -12,6 +12,9 @@ ENV LIBROSA_CACHE_DIR=/tmp/librosa_cache
|
|
| 12 |
# Set working directory
|
| 13 |
WORKDIR /app
|
| 14 |
|
|
|
|
|
|
|
|
|
|
| 15 |
# Copy and install Python dependencies
|
| 16 |
COPY requirements.txt .
|
| 17 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 12 |
# Set working directory
|
| 13 |
WORKDIR /app
|
| 14 |
|
| 15 |
+
# Prevent Numba/librosa caching errors
|
| 16 |
+
ENV NUMBA_DISABLE_CACHE=1
|
| 17 |
+
|
| 18 |
# Copy and install Python dependencies
|
| 19 |
COPY requirements.txt .
|
| 20 |
RUN pip install --no-cache-dir -r requirements.txt
|