FROM python:3.10-slim # Install system dependencies RUN apt-get update && apt-get install -y \ build-essential \ cmake \ git \ && rm -rf /var/lib/apt/lists/* # Clone llama.cpp RUN git clone https://github.com/ggerganov/llama.cpp /app/llama.cpp # Build llama.cpp WORKDIR /app/llama.cpp RUN mkdir -p build && cd build && cmake .. && make # Set up Python environment WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy your app code COPY . . # Set the entrypoint CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]