# Use an official Python runtime as a parent image FROM python:3.10-slim # Set environment variables ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 # Set the working directory WORKDIR /code # Install system dependencies RUN apt-get update && apt-get install -y \ build-essential \ libglib2.0-0 \ libsm6 \ libxrender1 \ libxext6 \ && rm -rf /var/lib/apt/lists/* # Install Python dependencies COPY requirements.txt . RUN pip install --upgrade pip && pip install -r requirements.txt # Copy the entire app COPY . . # Change the model path in code: Use a relative path like "app/model/eye_disease_model.pth" # Make sure it exists inside the image # Expose the port FastAPI will run on EXPOSE 8000 # Run the app CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]