osrokas commited on
Commit
f0430ef
·
verified ·
1 Parent(s): 5c6c346

Synced repo using 'sync_with_huggingface' Github Action

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -10,10 +10,10 @@ RUN pip install torch==1.9.0+cpu torchvision==0.10.0+cpu -f https://download.pyt
10
 
11
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
 
13
- RUN mkdir ./.cache
14
 
15
  COPY . /code/
16
 
17
- RUN chmod 777 ./.cache
18
 
19
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
10
 
11
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
 
13
+ RUN mkdir /.cache
14
 
15
  COPY . /code/
16
 
17
+ RUN chmod 777 /.cache
18
 
19
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]