Spaces:
Sleeping
Sleeping
| FROM python:3.12-slim | |
| ENV PYTHONDONTWRITEBYTECODE=1 \ | |
| PYTHONUNBUFFERED=1 | |
| WORKDIR /app | |
| # Install system deps + git | |
| RUN apt-get update && \ | |
| apt-get install -y --no-install-recommends \ | |
| git \ | |
| curl \ | |
| ca-certificates \ | |
| libnss3 \ | |
| libatk1.0-0 \ | |
| libatk-bridge2.0-0 \ | |
| libcups2 \ | |
| libdrm2 \ | |
| libxkbcommon0 \ | |
| libxcomposite1 \ | |
| libxdamage1 \ | |
| libxrandr2 \ | |
| libgbm1 \ | |
| libasound2 && \ | |
| rm -rf /var/lib/apt/lists/* | |
| # Copy and install Python dependencies (FastAPI, etc.) | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Clone and install perplexity-ai in editable mode WITH [driver] | |
| RUN git clone https://github.com/helallao/perplexity-ai.git ./perplexity-ai | |
| RUN pip install --no-cache-dir -e ./perplexity-ai[driver] | |
| # Install Chromium for patchright | |
| RUN patchright install chromium | |
| # Copy app | |
| COPY main.py . | |
| # Expose port 7860 | |
| EXPOSE 7860 | |
| # Run | |
| CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] |