add docker build stuff

This commit is contained in:
James Ravenscroft 2023-04-10 08:51:48 +01:00
parent 35e56ffd35
commit 9b2082c128
3 changed files with 33 additions and 0 deletions

1
.dockerignore Normal file
View File

@ -0,0 +1 @@
ggml/build

29
Dockerfile Normal file
View File

@ -0,0 +1,29 @@
FROM alpine AS build
RUN apk add --update alpine-sdk boost-dev cmake
ADD ./ggml /build/ggml
RUN mkdir /build/ggml/build
WORKDIR /build/ggml/build
RUN cmake -D CMAKE_EXE_LINKER_FLAGS="-static" ..
RUN make codegen-serve
FROM alpine AS runtime
WORKDIR /app
COPY --from=build /build/ggml/build/bin/codegen-serve /app/codegen-serve
ENV THREADS=4
ENV MODEL="/models/ggml-model-quant.bin"
COPY ./run.sh /app/
EXPOSE 18080
CMD /app/run.sh

3
run.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
/app/codegen-serve -t $THREADS -m $MODEL