redfernstech commited on
Commit
b14eab6
·
verified ·
1 Parent(s): 7f20f11

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -3,7 +3,7 @@ FROM python:3.11-slim as base
3
  WORKDIR /app
4
 
5
  # Install system tools
6
- RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
7
 
8
  # Install Ollama
9
  RUN curl -fsSL https://ollama.com/install.sh | bash
 
3
  WORKDIR /app
4
 
5
  # Install system tools
6
+ RUN apt-get update && apt-get install -y curl && apt install -y procps && rm -rf /var/lib/apt/lists/*
7
 
8
  # Install Ollama
9
  RUN curl -fsSL https://ollama.com/install.sh | bash