Spaces:
Sleeping
Sleeping
| FROM python:3.10 | |
| RUN apt-get update && apt-get install -y libreoffice poppler-utils | |
| WORKDIR /app | |
| COPY . /app | |
| RUN pip install fastapi uvicorn python-multipart PyPDF2 pillow pdf2image | |
| CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |