Fix Dockerfile: add zstd dependency for Ollama install
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
|
| 3 |
-
RUN apt-get update && apt-get install -y curl && \
|
| 4 |
curl -fsSL https://ollama.com/install.sh | sh && \
|
| 5 |
rm -rf /var/lib/apt/lists/*
|
| 6 |
|
|
|
|
| 1 |
FROM python:3.11-slim
|
| 2 |
|
| 3 |
+
RUN apt-get update && apt-get install -y curl zstd && \
|
| 4 |
curl -fsSL https://ollama.com/install.sh | sh && \
|
| 5 |
rm -rf /var/lib/apt/lists/*
|
| 6 |
|