Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -18,14 +18,14 @@ ENV HF_HUB_CACHE=/home/user/.cache
|
|
| 18 |
|
| 19 |
WORKDIR $HOME/backend
|
| 20 |
|
| 21 |
-
# Install spaCy large english pipeline
|
| 22 |
-
RUN python -m spacy download en_core_web_lg
|
| 23 |
-
|
| 24 |
# Install requirements.txt
|
| 25 |
RUN pip install --no-cache-dir --upgrade -r ./requirements.txt
|
| 26 |
RUN pip install git+https://github.com/huggingface/transformers.git
|
| 27 |
RUN pip install pydantic[email]
|
| 28 |
|
|
|
|
|
|
|
|
|
|
| 29 |
# Make all files and folders readable, writable, executable
|
| 30 |
# RUN chmod -R 777 ./
|
| 31 |
|
|
|
|
| 18 |
|
| 19 |
WORKDIR $HOME/backend
|
| 20 |
|
|
|
|
|
|
|
|
|
|
| 21 |
# Install requirements.txt
|
| 22 |
RUN pip install --no-cache-dir --upgrade -r ./requirements.txt
|
| 23 |
RUN pip install git+https://github.com/huggingface/transformers.git
|
| 24 |
RUN pip install pydantic[email]
|
| 25 |
|
| 26 |
+
# Install spaCy large english pipeline
|
| 27 |
+
RUN python -m spacy download en_core_web_lg
|
| 28 |
+
|
| 29 |
# Make all files and folders readable, writable, executable
|
| 30 |
# RUN chmod -R 777 ./
|
| 31 |
|