Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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 -
|
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 |
|