Spaces:
Paused
Paused
File size: 1,167 Bytes
1bc3f18 | 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 26 27 28 29 30 31 32 33 34 35 36 37 | # βββββββββββββββββββββββββββββββββββββββββββββ
# IntegraRAG β Production Dockerfile
# Services bundled: FastAPI + Celery worker
# External deps: Redis, Qdrant (cloud/managed)
# βββββββββββββββββββββββββββββββββββββββββββββ
FROM python:3.11-slim
# System deps
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
curl \
libmagic1 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
# Install Python deps first (layer cache)
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application source
COPY . .
# ββ Runtime env defaults (override via HF Secrets or docker run -e) ββ
ENV PORT=7860 \
PYTHONUNBUFFERED=1 \
PYTHONDONTWRITEBYTECODE=1
# Hugging Face Spaces exposes port 7860
EXPOSE 7860
# Entrypoint: start Celery worker in background, then FastAPI
COPY docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod +x /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]
|