ollama/Dockerfile
2023-06-30 10:47:55 -04:00

5 lines
158 B
Docker

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"]