Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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
|