mirror of
https://github.com/mudler/LocalAI.git
synced 2025-02-04 10:11:02 +00:00
7fec26f5d3
Signed-off-by: mudler <mudler@c3os.io>
13 lines
313 B
Docker
13 lines
313 B
Docker
ARG GO_VERSION=1.20
|
|
ARG DEBIAN_VERSION=11
|
|
FROM golang:$GO_VERSION as builder
|
|
WORKDIR /build
|
|
RUN apt-get update && apt-get install -y cmake
|
|
COPY . .
|
|
ARG BUILD_TYPE=
|
|
RUN make build${BUILD_TYPE}
|
|
|
|
FROM debian:$DEBIAN_VERSION
|
|
COPY --from=builder /build/llama-cli /usr/bin/llama-cli
|
|
ENTRYPOINT [ "/usr/bin/llama-cli" ]
|