ollama/Dockerfile

6 lines
158 B
Text
Raw Normal View History

2023-06-30 14:47:55 +00:00
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"]