Spaces:
Sleeping
Sleeping
| FROM python:3.10 | |
| # WORKDIR /code | |
| COPY ./requirements.txt /requirements.txt | |
| COPY ./main.py /main.py | |
| COPY ./selected_tags.json / | |
| COPY ./spacy_code_model /spacy_code_model | |
| COPY ./spacy_text_model /spacy_text_model | |
| RUN pip install --no-cache-dir --upgrade -r /requirements.txt | |
| CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |