JPBianchi commited on
Commit
a6e9cc1
1 Parent(s): cd03528
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -17,6 +17,6 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
17
  RUN python -c "import nltk; nltk.download('stopwords')"
18
  # ^ to fix runtime error, see https://github.com/run-llama/llama_index/issues/10681
19
 
20
- RUN sudo chmod -R 777 /usr/local/lib/python3.10/site-packages
21
 
22
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
17
  RUN python -c "import nltk; nltk.download('stopwords')"
18
  # ^ to fix runtime error, see https://github.com/run-llama/llama_index/issues/10681
19
 
20
+ RUN chmod -R 777 /usr/local/lib/python3.10/site-packages
21
 
22
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]