Sahabat-AI / Dockerfile
arvinega's picture
Update Dockerfile
6a03ad9 verified
raw
history blame contribute delete
431 Bytes
FROM ghcr.io/ggerganov/llama.cpp:full
RUN apt update && apt install wget -y
# Ganti ke model Dhanishtha GGUF (Q4_K_M)
RUN wget "https://huggingface.co/QuantFactory/gemma2-9b-cpt-sahabatai-v1-instruct-GGUF/blob/main/gemma2-9b-cpt-sahabatai-v1-instruct.Q8_0.gguf" -O /sahabatai.gguf
CMD ["--server", "-m", "/sahabatai.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "4096", "-c", "32000", "-n", "4000", "-t", "2", "--mlock"]