Spaces:
Running
Running
FROM python:3.10.16 | |
WORKDIR /app | |
COPY . /app | |
RUN pip install --upgrade pip && \ | |
pip install --no-cache-dir -r requirements.txt && \ | |
pip install git+https://github.com/allenai/olmocr.git | |
EXPOSE 7860 | |
CMD ["python", "app.py"] |