gemma-3-1b-it / Dockerfile
Monster's picture
Update Dockerfile
afb6ee1 verified
raw
history blame contribute delete
346 Bytes
FROM ghcr.io/ggml-org/llama.cpp:server
RUN apt update && apt install wget -y
RUN wget "https://huggingface.co/ggml-org/gemma-3-1b-it-GGUF/resolve/main/gemma-3-1b-it-Q8_0.gguf" -O /gemma-3-1b-it-Q8_0.gguf
CMD ["-m", "/gemma-3-1b-it-Q8_0.gguf", "--port", "7860", "--host", "0.0.0.0", "-t", "2", "-tb", "2", "--mlock", "-c", "4096", "-b", "512"]