Monster commited on
Commit
fa09834
·
verified ·
1 Parent(s): d24dd12

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM ghcr.io/ggerganov/llama.cpp:full
2
+
3
+ RUN curl --output /l.gguf "https://huggingface.co/unsloth/DeepSeek-R1-Distill-Qwen-1.5B-GGUF/resolve/main/DeepSeek-R1-Distill-Qwen-1.5B-Q8_0.gguf"
4
+
5
+ CMD ["--server", "-m", "/l.gguf", "--port", "7860", "--host", "0.0.0.0", "-n", "512"]