Andrea Sharon Silva commited on
Commit
8ca3800
·
1 Parent(s): 764f62f

changed llama version

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -21,7 +21,7 @@ RUN curl -fsSL https://ollama.com/install.sh | sh
21
  # Pull models at build time while network is available
22
  RUN ollama serve & sleep 5 && \
23
  ollama pull moondream && \
24
- ollama pull llama3.2:1b && \
25
  kill $(pgrep ollama) 2>/dev/null || true
26
 
27
  WORKDIR /app
@@ -55,7 +55,6 @@ RUN pip install --no-cache-dir \
55
  python-dotenv==1.1.1 \
56
  "huggingface_hub>=0.19.3,<1.0"
57
 
58
- # Build frontend
59
  RUN apt-get update && apt-get install -y nodejs npm && rm -rf /var/lib/apt/lists/*
60
  COPY xai-demo/ /app/xai-demo/
61
  RUN cd /app/xai-demo && npm install && npm run build
 
21
  # Pull models at build time while network is available
22
  RUN ollama serve & sleep 5 && \
23
  ollama pull moondream && \
24
+ ollama pull llama3.2 && \
25
  kill $(pgrep ollama) 2>/dev/null || true
26
 
27
  WORKDIR /app
 
55
  python-dotenv==1.1.1 \
56
  "huggingface_hub>=0.19.3,<1.0"
57
 
 
58
  RUN apt-get update && apt-get install -y nodejs npm && rm -rf /var/lib/apt/lists/*
59
  COPY xai-demo/ /app/xai-demo/
60
  RUN cd /app/xai-demo && npm install && npm run build