xTHExBEASTx commited on
Commit
a6c9a80
·
verified ·
1 Parent(s): 714777b

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM ollama/ollama:latest
2
+
3
+ # Pre-load the model during build so it's ready instantly
4
+ RUN ollama serve & sleep 5 && ollama pull hf.co/unsloth/Qwen3-Coder-Next-GGUF:Q4_K_M
5
+
6
+ # Expose the Ollama port
7
+ EXPOSE 11434
8
+
9
+ ENTRYPOINT ["ollama", "serve"]