Commit 48920c87 authored by Jeffrey Morgan's avatar Jeffrey Morgan
Browse files

add basic `Dockerfile`

parent 05092f61
FROM ubuntu:22.04 FROM python:3-slim-bullseye
RUN apt-get update && apt-get install -y build-essential python3.11 python3-pip RUN apt-get update && apt-get install -y build-essential gcc ninja-build libopenblas-dev
RUN python3.11 -m pip install ollama RUN python -m pip install --upgrade pip setuptools
RUN CMAKE_ARGS="-DLLAMA_OPENBLAS=on" FORCE_CMAKE=1 pip install ollama
ENTRYPOINT ["ollama"] ENTRYPOINT ["ollama"]
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment