Spaces:
Sleeping
Sleeping
| FROM python:3.12-slim | |
| # Set working directory | |
| WORKDIR /app | |
| # Copy all project files | |
| COPY requirements.txt . | |
| COPY model.onnx . | |
| COPY main.py . | |
| COPY prompts.py . | |
| COPY app.py . | |
| # Create directory for environment variables | |
| RUN mkdir -p /app/.env | |
| # Install dependencies | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # After copying files | |
| RUN chmod -R 755 /app | |
| # Expose port 7860 (required for Hugging Face Spaces) | |
| EXPOSE 7860 | |
| # Run the FastAPI app | |
| CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860", "--root-path", "/spaces/Surajkumaar/ClarirAI"] |