jisaacso219 commited on
Commit
fb5fb6a
·
verified ·
1 Parent(s): 8e2a57d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -3,10 +3,10 @@ FROM python:3.10-slim
3
  # Install system dependencies
4
  RUN apt-get update && apt-get install -y git ffmpeg libsndfile1 && apt-get clean
5
 
6
- # Set Hugging Face cache to a writable location
7
  ENV TRANSFORMERS_CACHE=/tmp/hf_cache
8
  ENV HF_HOME=/tmp/hf_home
9
-
10
  # Set working directory
11
  WORKDIR /app
12
 
 
3
  # Install system dependencies
4
  RUN apt-get update && apt-get install -y git ffmpeg libsndfile1 && apt-get clean
5
 
6
+ # Set Hugging Face + Numba environment configs
7
  ENV TRANSFORMERS_CACHE=/tmp/hf_cache
8
  ENV HF_HOME=/tmp/hf_home
9
+ ENV NUMBA_DISABLE_CACHE=1
10
  # Set working directory
11
  WORKDIR /app
12