Taskbotv2 / Dockerfile
Monster's picture
Create Dockerfile
ff4ee52 verified
raw
history blame
278 Bytes
FROM ghcr.io/ggerganov/llama.cpp:full
RUN apt update && apt install wget -y
RUN wget "https://huggingface.co/ggml-org/gemma-3n-E4B-it-GGUF/resolve/main/gemma-3n-E4B-it-Q8_0.gguf" -O /l.gguf
CMD ["--server", "-m", "/l.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "512"]