bentebbutt commited on
Commit
504f9aa
1 Parent(s): 180cead

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -54,12 +54,12 @@ RUN ls -a
54
 
55
  # Prepare the entrypoint scripts
56
  COPY --chown=pn start_ollama.sh start_ollama.sh
57
- COPY --chown=pn run.sh run.sh
58
  RUN ls -a
59
  RUN chmod +x start_ollama.sh
60
- RUN chmod +x run.sh
61
 
62
  # Expose the port 11434 for ollama, 8080 for the backend, and 8000 for FastAPI
63
- EXPOSE 8080 8000
64
 
65
  CMD ["bash", "start_ollama.sh"]
 
54
 
55
  # Prepare the entrypoint scripts
56
  COPY --chown=pn start_ollama.sh start_ollama.sh
57
+ COPY --chown=pn start_app.sh start_app.sh
58
  RUN ls -a
59
  RUN chmod +x start_ollama.sh
60
+ RUN chmod +x start_app.sh
61
 
62
  # Expose the port 11434 for ollama, 8080 for the backend, and 8000 for FastAPI
63
+ EXPOSE 11434 8080 8000
64
 
65
  CMD ["bash", "start_ollama.sh"]