FROM python:3.9 WORKDIR /app COPY . /app RUN pip install --no-cache-dir -r requirements.txt EXPOSE 7860 ENV STREAMLIT_SERVER_HEADLESS=true CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]