add basic Dockerfile

This commit is contained in:
Jeffrey Morgan 2023-06-30 12:17:43 -04:00
parent 05092f61a6
commit 48920c873b

View file

@ -1,5 +1,5 @@
FROM ubuntu:22.04
RUN apt-get update && apt-get install -y build-essential python3.11 python3-pip
RUN python3.11 -m pip install ollama
FROM python:3-slim-bullseye
RUN apt-get update && apt-get install -y build-essential gcc ninja-build libopenblas-dev
RUN python -m pip install --upgrade pip setuptools
RUN CMAKE_ARGS="-DLLAMA_OPENBLAS=on" FORCE_CMAKE=1 pip install ollama
ENTRYPOINT ["ollama"]