AndriiPets commited on
Commit
4d46b95
·
1 Parent(s): c53fb27
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -4,9 +4,9 @@ WORKDIR /code
4
 
5
  COPY ./requirements.txt /code/requirements.txt
6
 
7
- COPY ./cache /code/cache
8
 
9
- ENV TRANSFORMERS_CACHE="/code/cache"
10
 
11
  RUN pip install --upgrade pip
12
 
 
4
 
5
  COPY ./requirements.txt /code/requirements.txt
6
 
7
+ RUN mkdir ./.cache
8
 
9
+ ENV TRANSFORMERS_CACHE="./.cache"
10
 
11
  RUN pip install --upgrade pip
12