Spaces:
Running
Running
File size: 567 Bytes
f80ff70 da16568 f80ff70 62fbf7d | 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 | 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"] |