Files
ollama-docker/Dockerfile
Gormery Kombo Wanjiru 36e41673bf modified the env
2024-02-12 21:22:40 +00:00

18 lines
374 B
Docker

FROM python:3.11-slim
WORKDIR /code
COPY ./requirements.txt ./
RUN apt-get update && apt-get install git -y && apt-get install curl -y
RUN curl -fsSL https://ollama.com/install.sh | sh
RUN pip install --no-cache-dir -r requirements.txt
COPY ./src ./src
EXPOSE 8000
CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]