MiniCPM5-1B / Dockerfile
inference-labs's picture
Update Dockerfile
1570e56 verified
Raw
History Blame Contribute Delete
402 Bytes
FROM ghcr.io/ggml-org/llama.cpp:server
RUN apt update && apt install wget -y && rm -rf /var/lib/apt/lists/*
RUN wget "https://huggingface.co/Abiray/MiniCPM5-1B-GGUF/resolve/main/minicpm5-1b-f16.gguf" -O /minicpm5-1b-f16.gguf
CMD [ \
"-m", "/minicpm5-1b-f16.gguf", \
"--port", "7860", \
"--host", "0.0.0.0", \
"-t", "2", \
"-tb", "2", \
"-fa", "on", \
"-ub", "256", \
"-b", "2048" \
]