yashvshetty commited on
Commit
00c185e
·
1 Parent(s): be26c14

Fix librosa numba cache dir

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y \
8
  RUN ln -s /usr/bin/python3.11 /usr/bin/python
9
 
10
  WORKDIR /app
11
- ENV HF_HOME=/tmp/hf_cache TRANSFORMERS_CACHE=/tmp/hf_cache
12
  COPY requirements.txt .
13
  RUN python -m pip install --no-cache-dir -r requirements.txt
14
 
 
8
  RUN ln -s /usr/bin/python3.11 /usr/bin/python
9
 
10
  WORKDIR /app
11
+ ENV HF_HOME=/tmp/hf_cache TRANSFORMERS_CACHE=/tmp/hf_cache NUMBA_CACHE_DIR=/tmp/numba_cache
12
  COPY requirements.txt .
13
  RUN python -m pip install --no-cache-dir -r requirements.txt
14