Spaces:
Running
Running
osanseviero
commited on
Commit
·
47e52e8
1
Parent(s):
61d1d7f
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -4,6 +4,8 @@ WORKDIR /code
|
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
|
|
|
|
|
7 |
ENV HUGGINGFACE_HUB_CACHE=/data
|
8 |
|
9 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
4 |
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
|
7 |
+
RUN mkdir -p /data
|
8 |
+
RUN chmod 777 /data
|
9 |
ENV HUGGINGFACE_HUB_CACHE=/data
|
10 |
|
11 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|