Thiago Hersan
commited on
Commit
·
eac8342
1
Parent(s):
2f12c9d
give permissions to TRANSFORMERS_CACHE dir
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -10,5 +10,6 @@ COPY app.py /code/app.py
|
|
10 |
COPY examples /code/examples
|
11 |
|
12 |
RUN mkdir -p /.cache/huggingface/hub
|
|
|
13 |
|
14 |
CMD ["python", "app.py"]
|
|
|
10 |
COPY examples /code/examples
|
11 |
|
12 |
RUN mkdir -p /.cache/huggingface/hub
|
13 |
+
RUN chmod a+rwx -R /.cache/huggingface/hub
|
14 |
|
15 |
CMD ["python", "app.py"]
|