gemma / Dockerfile
GreenRunchly's picture
Update Dockerfile
9341cd1 verified
raw
history blame contribute delete
383 Bytes
FROM ghcr.io/ggerganov/llama.cpp:full
RUN apt update && apt install wget -y
#RUN wget "https://huggingface.co/unsloth/gemma-3-1b-it-GGUF/resolve/main/gemma-3-1b-it-Q8_0.gguf" -O /l.gguf
RUN wget "https://huggingface.co/unsloth/gemma-3-4b-it-GGUF/resolve/main/gemma-3-4b-it-Q8_0.gguf" -O /l.gguf
CMD ["--server", "-m", "/l.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "512"]