ge42B / Dockerfile
Monster's picture
Update Dockerfile
30048a3 verified
raw
history blame contribute delete
486 Bytes
FROM ghcr.io/ggml-org/llama.cpp:full
RUN apt update && apt install wget -y
RUN wget "https://huggingface.co/ggml-org/gemma-4-E2B-it-GGUF/resolve/main/gemma-4-e2b-it-Q8_0.gguf" -O /gemma-4-e2b-it-Q8_0.gguf
RUN wget "https://huggingface.co/ggml-org/gemma-4-E2B-it-GGUF/resolve/main/mmproj-gemma-4-e2b-it-f16.gguf" -O /mmproj-gemma-4-e2b-it-f16.gguf
CMD ["--server", "-m", "/gemma-4-e2b-it-Q8_0.gguf","--mmproj", "/mmproj-gemma-4-e2b-it-f16.gguf", "--port", "7860", "--host", "0.0.0.0"]