split_pdf_30_pages / Dockerfile
anujakkulkarni's picture
Create Dockerfile
148af85 verified
raw
history blame contribute delete
168 Bytes
FROM python:3.10
WORKDIR /app
COPY . /app
RUN pip install fastapi uvicorn PyPDF2 python-multipart
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]