shikharshahi commited on
Commit
93bb69b
·
verified ·
1 Parent(s): 4df805f

DockerFile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM ollama/ollama
2
+
3
+ RUN apt-get update && apt-get install -y curl
4
+
5
+ EXPOSE 11434
6
+
7
+ ENV OLLAMA_HOST=0.0.0.0
8
+
9
+ CMD ["ollama", "serve"]