Thiago Hersan
commited on
Commit
·
7801c68
1
Parent(s):
eac8342
give permissions to workdir dir
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -10,6 +10,8 @@ COPY app.py /code/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"]
|
|
|
10 |
COPY examples /code/examples
|
11 |
|
12 |
RUN mkdir -p /.cache/huggingface/hub
|
13 |
+
|
14 |
RUN chmod a+rwx -R /.cache/huggingface/hub
|
15 |
+
RUN chmod a+rwx -R /code
|
16 |
|
17 |
CMD ["python", "app.py"]
|