Yaya86 commited on
Commit
c5a91ca
·
verified ·
1 Parent(s): 536845b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -4
Dockerfile CHANGED
@@ -15,13 +15,18 @@ RUN mkdir -p /home/appuser/.ollama && chmod 777 /home/appuser/.ollama
15
 
16
  USER appuser
17
 
18
- COPY --chown=appuser ./id_ed25519.pub ./home/appuser/.ollama
19
-
20
  WORKDIR /home/appuser/.ollama
21
 
22
- CMD ["ollama", "serve"]
 
 
23
 
 
 
 
24
 
 
 
25
 
26
  # Expose the server port
27
- EXPOSE 11434
 
15
 
16
  USER appuser
17
 
 
 
18
  WORKDIR /home/appuser/.ollama
19
 
20
+ # Copy the entry point script
21
+ COPY entrypoint.sh /entrypoint.sh
22
+ RUN chmod +x /entrypoint.sh
23
 
24
+ # Set the entry point script as the default command
25
+ ENTRYPOINT ["/entrypoint.sh"]
26
+ CMD ["ollama", "serve"]
27
 
28
+ # Set the model as an environment variable (this can be overridden)
29
+ ENV model=${model}
30
 
31
  # Expose the server port
32
+ EXPOSE 7860