xtom0 commited on
Commit
9f9f6ef
·
1 Parent(s): ea39ab8

Fix Dockerfile: add zstd dependency for Ollama install

Browse files
Files changed (1) hide show
  1. 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