FROM python:3.10-slim WORKDIR /app COPY . . RUN pip install --no-cache-dir -r requirements.txt # Hugging Face uses port 7860 ENV CHAINLIT_HOST=0.0.0.0 ENV CHAINLIT_PORT=7860 EXPOSE 7860 CMD ["streamlit", "run", "app.py"]