Spaces:
Sleeping
Sleeping
apersonnaz commited on
Commit ·
8744c48
1
Parent(s): 07c8bd5
HF bug fix attempt
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -8,7 +8,7 @@ COPY ./main.py /main.py
|
|
| 8 |
COPY ./selected_tags.json /
|
| 9 |
COPY ./spacy_code_model /spacy_code_model
|
| 10 |
COPY ./spacy_text_model /spacy_text_model
|
| 11 |
-
RUN pip install
|
| 12 |
|
| 13 |
|
| 14 |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 8 |
COPY ./selected_tags.json /
|
| 9 |
COPY ./spacy_code_model /spacy_code_model
|
| 10 |
COPY ./spacy_text_model /spacy_text_model
|
| 11 |
+
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
|
| 12 |
|
| 13 |
|
| 14 |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|