lucianotonet commited on
Commit
c25811c
1 Parent(s): 03c893d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -2
Dockerfile CHANGED
@@ -1,5 +1,14 @@
1
- # Use a imagem base do Ollama
2
- FROM ollama/ollama:0.3.6
 
 
 
 
 
 
 
 
 
3
 
4
  # Exponha a porta que será utilizada pelo Ollama
5
  EXPOSE 11434
 
1
+ # Use uma imagem base do Python, por exemplo
2
+ FROM python:3.9-slim
3
+
4
+ # Instale dependências necessárias
5
+ RUN apt-get update && apt-get install -y curl
6
+
7
+ # Instale o Ollama
8
+ RUN curl -fsSL https://ollama.com/install.sh | sh
9
+
10
+ # Verifique se o Ollama foi instalado corretamente
11
+ RUN ollama --version
12
 
13
  # Exponha a porta que será utilizada pelo Ollama
14
  EXPOSE 11434