| # Use the official Python image | |
| FROM python:3.9-slim | |
| # Set the working directory | |
| WORKDIR /app | |
| # Copy files | |
| COPY requirements.txt requirements.txt | |
| COPY .env .env | |
| COPY main.py main.py | |
| # Install dependencies | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Expose the application port | |
| EXPOSE 7860 | |
| # Debugging: Show files and env variables | |
| RUN ls -al && cat .env | |
| # Run the FastAPI application using uvicorn | |
| CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] | |