Spaces:
Sleeping
Sleeping
File size: 258 Bytes
b62e1ac 9ed81e0 b62e1ac 878ca93 676c60f b62e1ac | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.10-slim
WORKDIR /app
RUN pip install --upgrade pip
COPY requirements.txt .
RUN pip install -r requirements.txt
#RUN pip install --force-reinstall --no-cache-dir spacy==3.5.3 numpy thinc
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"]
|