mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
14 lines
309 B
Docker
14 lines
309 B
Docker
|
ARG GO_VERSION=1.20
|
||
|
ARG DEBIAN_VERSION=11
|
||
|
ARG BUILD_TYPE=
|
||
|
|
||
|
FROM golang:$GO_VERSION as builder
|
||
|
WORKDIR /build
|
||
|
RUN apt-get update && apt-get install -y cmake
|
||
|
COPY . .
|
||
|
RUN make build
|
||
|
|
||
|
FROM debian:$DEBIAN_VERSION
|
||
|
COPY --from=builder /build/local-ai /usr/bin/local-ai
|
||
|
EXPOSE 8080
|
||
|
ENTRYPOINT [ "/usr/bin/local-ai" ]
|