alibidaran commited on
Commit
f68862b
·
verified ·
1 Parent(s): 6b3f77d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -5,9 +5,7 @@ FROM python:3.10-slim
5
  RUN apt-get update && apt-get install -y curl unzip && rm -rf /var/lib/apt/lists/*
6
 
7
  # Install Ollama server
8
- RUN curl -L https://ollama.com/download/ollama-linux-amd64.tgz -o ollama-linux-amd64.tgz \
9
- && sudo tar -C /usr -xzf ollama-linux-amd64.tgz \
10
- && rm ollama-linux-amd64.tgz
11
  # Set working directory for the app
12
  WORKDIR /app
13
 
 
5
  RUN apt-get update && apt-get install -y curl unzip && rm -rf /var/lib/apt/lists/*
6
 
7
  # Install Ollama server
8
+ RUN curl -fsSL https://ollama.com/install.sh | sh
 
 
9
  # Set working directory for the app
10
  WORKDIR /app
11