File size: 354 Bytes
e4d11a3
15de600
e4d11a3
 
 
15de600
e4d11a3
15de600
e4d11a3
15de600
e4d11a3
 
15de600
e4d11a3
15de600
e4d11a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.10-slim

# Instalações básicas e Ollama
RUN apt-get update && apt-get install -y curl git && \
    curl -fsSL https://ollama.com/install.sh | sh

WORKDIR /app

COPY . /app

RUN pip install --upgrade pip
RUN pip install -r requirements.txt

EXPOSE 7860

CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]