fix compilation issue in Dockerfile, remove from README.md until ready

This commit is contained in:
Jeffrey Morgan
2023-07-11 19:51:08 -07:00
parent dcb6ba389a
commit 7c71c10d4f
4 changed files with 2 additions and 4 deletions

View File

@@ -1,8 +1,6 @@
FROM golang:1.20
RUN apt-get update && apt-get install -y cmake
WORKDIR /go/src/github.com/jmorganca/ollama
COPY . .
RUN cmake -S llama -B llama/build && cmake --build llama/build
RUN CGO_ENABLED=1 go build -ldflags '-linkmode external -extldflags "-static"' .
FROM alpine