File size: 804 Bytes
c7dbc9f
 
 
 
 
 
 
 
 
faee157
c7dbc9f
 
 
 
 
 
1bbbc47
 
 
 
 
faee157
 
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:server

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  --no-cache-dir   huggingface_hub gradio

RUN python3 -c 'from huggingface_hub import hf_hub_download; \
    repo="unsloth/gemma-4-E4B-it-GGUF"; \
    hf_hub_download(repo_id=repo, filename="gemma-4-E4B-it-Q4_K_M.gguf", local_dir="/app"); \
    hf_hub_download(repo_id=repo, filename="mmproj-BF16.gguf", local_dir="/app")'

WORKDIR /app

COPY app.py .

EXPOSE 8080 7860

CMD bash -c "llama-server -m /app/gemma-4-E4B-it-Q4_K_M.gguf --mmproj /app/mmproj-BF16.gguf --host 0.0.0.0 --port 8080 --no-ui -t 2 --cache-type-k q8_0 --cache-type-v iq4_nl --top-k 64 -rea off -c 128000   & sleep 5 && python3 app.py"