Spaces:
Sleeping
Sleeping
File size: 657 Bytes
1b08040 2ecc4a7 1b08040 2ecc4a7 bf7338b 2ecc4a7 bf7338b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | FROM python:3.12-slim
WORKDIR /app
# System deps for python-docx, tiktoken, etc.
RUN apt-get update && apt-get install -y \
build-essential libpq-dev tesseract-ocr libmagic1 libgl1 && \
rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Download cross-encoder model at build time
RUN python -c "from sentence_transformers import CrossEncoder; \
CrossEncoder('cross-encoder/ms-marco-MiniLM-L-6-v2')"
COPY . .
# Create data dirs
RUN mkdir -p data/uploads data/bm25_indexes data/cache
EXPOSE 7860
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860", "--workers", "2"]
|