Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -16,6 +16,9 @@ RUN python -m pip install --upgrade pip && \
|
|
| 16 |
pip install --no-cache-dir -r requirements.txt && \
|
| 17 |
python -m spacy download en_core_web_md
|
| 18 |
# Create the cache directory and set permissions
|
|
|
|
|
|
|
|
|
|
| 19 |
RUN mkdir -p /app/.cache && \
|
| 20 |
chmod -R 777 /app && \
|
| 21 |
chmod -R 777 /app/.cache
|
|
|
|
| 16 |
pip install --no-cache-dir -r requirements.txt && \
|
| 17 |
python -m spacy download en_core_web_md
|
| 18 |
# Create the cache directory and set permissions
|
| 19 |
+
RUN mkdir -p /.cache && \
|
| 20 |
+
chmod -R 777 /.cache
|
| 21 |
+
|
| 22 |
RUN mkdir -p /app/.cache && \
|
| 23 |
chmod -R 777 /app && \
|
| 24 |
chmod -R 777 /app/.cache
|