File size: 728 Bytes
b90ee5f 2ec3f9b b90ee5f 2ec3f9b b90ee5f 2ec3f9b b90ee5f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | FROM ghcr.io/ggml-org/llama.cpp:full
WORKDIR /app
RUN apt update && apt install -y python3 python3-pip python3-venv
RUN python3 -m venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH"
RUN pip install -U pip huggingface_hub
RUN python3 -c 'from huggingface_hub import hf_hub_download; \
repo="mradermacher/Qwable-9B-Claude-Fable-5-OBLITERATED-GGUF"; \
hf_hub_download(repo_id=repo, filename="Qwable-9B-Claude-Fable-5-OBLITERATED.f16.gguf", local_dir="/app")'
CMD ["--server", \
"-m", "/app/Qwable-9B-Claude-Fable-5-OBLITERATED.f16.gguf", \
"--host", "0.0.0.0", \
"--port", "7860", \
"-t", "2", \
"--cache-type-k", "q8_0", \
"--cache-type-v", "q8_0", \
"-c", "96000", \
"-n", "38912"] |