# Use Python 3.9 as the base image | |
FROM python:3.9 | |
# Set the working directory inside the container | |
WORKDIR /app | |
# Copy the requirements file and install dependencies | |
COPY requirements.txt . | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Copy the entire project into the container | |
COPY . . | |
# Expose port 7860 (same as FastAPI runs on) | |
EXPOSE 7860 | |
# Command to run FastAPI on startup | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] | |