# Use an official lightweight Python image FROM python:3.10-slim # Set the working directory inside the container WORKDIR /app # Copy the requirements file into the container COPY backend/requirements.txt /app/backend/requirements.txt # Install the dependencies RUN pip install --no-cache-dir -r/app/backend/requirements.txt # Copy the entire directory into the container COPY . /app # Expose the correct port (Hugging Face Spaces uses 7860 by default, change if needed) EXPOSE 7860 # Command to run the FastAPI application using uvicorn CMD ["uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "7860"]