Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -7,9 +7,10 @@ RUN apt-get update && apt-get install -y \
|
|
| 7 |
build-essential \
|
| 8 |
curl \
|
| 9 |
git \
|
|
|
|
| 10 |
&& curl -fsSL https://ollama.com/install.sh | sh \
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
-
|
| 13 |
# Copy requirements and install
|
| 14 |
COPY requirements.txt ./
|
| 15 |
RUN pip3 install --no-cache-dir -r requirements.txt
|
|
|
|
| 7 |
build-essential \
|
| 8 |
curl \
|
| 9 |
git \
|
| 10 |
+
zstd \
|
| 11 |
&& curl -fsSL https://ollama.com/install.sh | sh \
|
| 12 |
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
+
|
| 14 |
# Copy requirements and install
|
| 15 |
COPY requirements.txt ./
|
| 16 |
RUN pip3 install --no-cache-dir -r requirements.txt
|