shellwhisperer-demo / Dockerfile
Aetheris
add FastAPI wrapper for /api/chat endpoint
a1bfead
Raw
History Blame Contribute Delete
413 Bytes
FROM ollama/ollama:latest
ENTRYPOINT []
RUN apt-get update -qq && apt-get install -y -qq python3 python3-pip python3-venv curl && rm -rf /var/lib/apt/lists/*
RUN python3 -m venv /venv
ENV PATH=/venv/bin:$PATH
RUN pip3 install -q gradio requests fastapi uvicorn python-multipart
WORKDIR /app
COPY app.py .
EXPOSE 7860
CMD ollama serve & sleep 3 && ollama pull FableForge-AI/shellwhisperer && python3 app.py