zephyr-python-ru-gguf / Dockerfile
Monster's picture
Update Dockerfile
d01f2e1 verified
raw
history blame
303 Bytes
FROM ghcr.io/ggerganov/llama.cpp:full
RUN apt update && apt install wget -y
RUN wget "https://huggingface.co/unsloth/DeepSeek-R1-Distill-Qwen-14B-GGUF/resolve/main/DeepSeek-R1-Distill-Qwen-14B-Q6_K.gguf" -O /l.gguf
CMD ["--server", "-m", "/l.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "512"]