jcheng5 commited on
Commit
cc6f8d1
·
verified ·
1 Parent(s): 7a5b32d

Update Dockerfile

Browse files

Try to fix permissions issue

Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -10,7 +10,8 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
10
 
11
  COPY . .
12
 
13
- RUN python preload.py
 
14
 
15
  EXPOSE 7860
16
 
 
10
 
11
  COPY . .
12
 
13
+ RUN mkdir -p /.cache
14
+ RUN chmod 777 /.cache
15
 
16
  EXPOSE 7860
17