| # Use a base image with Python | |
| FROM python:3.9-slim | |
| # Set the working directory | |
| WORKDIR /app | |
| # Copy requirements and install dependencies | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Copy the hosting script and model | |
| COPY app.py . | |
| COPY model ./model | |
| # Expose Streamlit default port | |
| EXPOSE 8501 | |
| # Run the Streamlit application | |
| CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"] | |