SurajSingh commited on
Commit
275fd28
·
verified ·
1 Parent(s): ea47d85

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -9,6 +9,8 @@ COPY ./requirements.txt /code/requirements.txt
9
 
10
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
 
 
 
12
  COPY . .
13
 
14
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8081"]
 
9
 
10
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
 
12
+ RUN chmod 777 ./cache
13
+
14
  COPY . .
15
 
16
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8081"]