Thiago Hersan
commited on
Commit
•
2f12c9d
1
Parent(s):
988ebda
add a writeable TRANSFORMERS_CACHE dir
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -9,4 +9,6 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
9 |
COPY app.py /code/app.py
|
10 |
COPY examples /code/examples
|
11 |
|
|
|
|
|
12 |
CMD ["python", "app.py"]
|
|
|
9 |
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"]
|