add Dockerfile

This commit is contained in:
Jeffrey Morgan 2023-06-30 10:47:55 -04:00
parent 3db89d2125
commit 54a94566f1

5
Dockerfile Normal file
View file

@ -0,0 +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
ENTRYPOINT ["ollama"]