Spaces:
Sleeping
Sleeping
File size: 344 Bytes
9ec003a a9dcb1a 9ec003a a9dcb1a cd91cec 8744c48 9ec003a 7aaede0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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"] |