# Use a minimal Python 3.12 base image | |
FROM python:3.12-slim | |
# Set working directory inside the container | |
WORKDIR /code | |
# Copy requirements | |
COPY requirements.txt . | |
# Install dependencies | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Copy your full project code | |
COPY . . | |
# Run FastAPI using uvicorn | |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] | |