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"]