Namo22 commited on
Commit
dbf3eb2
1 Parent(s): c285c68

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -10,6 +10,9 @@ RUN apt-get update && apt-get install -y portaudio19-dev
10
  # Copy the requirements file into the container at /code
11
  COPY ./requirements.txt /code/requirements.txt
12
 
 
 
 
13
  # Install the Python dependencies
14
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
15
 
 
10
  # Copy the requirements file into the container at /code
11
  COPY ./requirements.txt /code/requirements.txt
12
 
13
+ # Définir le répertoire du cache des Transformers
14
+ ENV TRANSFORMERS_CACHE /code/cache
15
+
16
  # Install the Python dependencies
17
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
18