Assistente_Medico / Dockerfile
ThIaGoOLuiZz's picture
Subindo Assistente Médico com Docker e Ollama
e4d11a3
raw
history blame
354 Bytes
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"]