FROM python:3.9-slim # Set working directory WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y build-essential # Copy requirements and install Python packages COPY requirements.txt . RUN pip install --upgrade pip RUN pip install -r requirements.txt # Copy the rest of the app COPY . . # Expose Streamlit port EXPOSE 8501 # Run the app CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]