FROM ghcr.io/ggml-org/llama.cpp:full WORKDIR /app RUN apt-get update && \ apt-get install -y --no-install-recommends \ python3 \ python3-pip \ python3-venv && \ rm -rf /var/lib/apt/lists/* RUN python3 -m venv /opt/venv ENV PATH="/opt/venv/bin:${PATH}" RUN pip install --no-cache-dir --upgrade pip huggingface_hub # Download verified Qwen3-4B GGUF RUN python3 - <