mirror of
https://github.com/mudler/LocalAI.git
synced 2025-02-07 03:29:10 +00:00
10 lines
206 B
Docker
10 lines
206 B
Docker
ARG GO_VERSION=1.20
|
|
ARG BUILD_TYPE=
|
|
FROM golang:$GO_VERSION
|
|
WORKDIR /build
|
|
RUN apt-get update && apt-get install -y cmake
|
|
COPY . .
|
|
RUN make prepare-sources
|
|
EXPOSE 8080
|
|
ENTRYPOINT [ "/build/entrypoint.sh" ]
|