vedaco commited on
Commit
2a08146
·
verified ·
1 Parent(s): 3a5d1e1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -1
Dockerfile CHANGED
@@ -2,8 +2,15 @@ FROM node:18-slim
2
 
3
  WORKDIR /app
4
 
 
 
 
 
 
 
 
 
5
  # Install Ollama
6
- RUN apt-get update && apt-get install -y curl ca-certificates
7
  RUN curl -fsSL https://ollama.com/install.sh | sh
8
 
9
  # Copy application files
 
2
 
3
  WORKDIR /app
4
 
5
+ # Install required dependencies
6
+ RUN apt-get update && apt-get install -y \
7
+ curl \
8
+ ca-certificates \
9
+ zstd \
10
+ xz-utils \
11
+ && rm -rf /var/lib/apt/lists/*
12
+
13
  # Install Ollama
 
14
  RUN curl -fsSL https://ollama.com/install.sh | sh
15
 
16
  # Copy application files