FROM python:3.10-slim WORKDIR /app RUN apt-get update && apt-get install -y \ build-essential \ cmake \ git \ libopenblas-dev \ ffmpeg \ && rm -rf /var/lib/apt/lists/* COPY requirements.txt . ENV CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" RUN pip install --no-cache-dir --upgrade pip && \ pip install --no-cache-dir -r requirements.txt COPY . . CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]