chmod
Browse files- 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
|
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"]
|