AI-RESEARCHER-2024 commited on
Commit
a5dcb41
1 Parent(s): 0c32f22

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -8,5 +8,7 @@ COPY --chown=user . $HOME/app
8
  COPY ./requirements.txt ~/app/requirements.txt
9
  RUN pip install -r requirements.txt
10
  RUN curl -fsSL https://ollama.com/install.sh | sh
 
 
11
  COPY . .
12
  CMD ["chainlit", "run", "app.py", "--port", "7860"]
 
8
  COPY ./requirements.txt ~/app/requirements.txt
9
  RUN pip install -r requirements.txt
10
  RUN curl -fsSL https://ollama.com/install.sh | sh
11
+ RUN ollama serve &
12
+ RUN ollama pull llama3.2:latest
13
  COPY . .
14
  CMD ["chainlit", "run", "app.py", "--port", "7860"]