SohomToom commited on
Commit
c479b56
·
verified ·
1 Parent(s): b9bf9b2

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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