mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
16773e2a35
Signed-off-by: mudler <mudler@mocaccino.org>
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" ]
|