alibidaran commited on
Commit
113b221
·
verified ·
1 Parent(s): 2909c70

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/linux-x64 -o ollama.zip \
9
- && unzip ollama.zip -d /usr/local/bin \
10
- && rm ollama.zip
11
 
12
  # Set working directory for the app
13
  WORKDIR /app
 
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
 
10
  # Set working directory for the app
11
  WORKDIR /app