turbopilot/Dockerfile.default

38 lines
1006 B
Docker
Raw Normal View History

FROM ubuntu:22.04 AS build
2023-04-10 03:51:48 -04:00
ENV DEBIAN_FRONTEND=noninteractive
2023-04-10 03:51:48 -04:00
# inlude kitware apt repo to allow us to grab latest cmake
RUN apt-get update && apt-get install -y ca-certificates gpg wget
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null
RUN echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ jammy main' | tee /etc/apt/sources.list.d/kitware.list >/dev/null
RUN apt-get update && apt-get install -y build-essential cmake libboost-dev libboost-thread-dev
ADD ./ /turbopilot
2023-04-10 03:51:48 -04:00
RUN mkdir /turbopilot/build
2023-04-10 03:51:48 -04:00
WORKDIR /turbopilot/build
2023-04-10 03:51:48 -04:00
2023-08-26 03:21:18 -04:00
RUN cmake -D GGML_STATIC=ON ..
RUN make turbopilot
2023-04-10 03:51:48 -04:00
FROM ubuntu:22.04 AS runtime
2023-04-10 03:51:48 -04:00
WORKDIR /app
2023-07-29 10:49:43 -04:00
COPY --from=build /turbopilot/build/bin/turbopilot /app/turbopilot
2023-04-10 03:51:48 -04:00
ENV THREADS=4
2023-04-10 04:18:04 -04:00
ENV MODEL="/models/codegen-2B-multi-ggml-4bit-quant.bin"
2023-04-10 03:51:48 -04:00
2023-05-08 09:24:49 -04:00
ENV BATCHSIZE=8
2023-04-10 03:51:48 -04:00
COPY ./run.sh /app/
EXPOSE 18080
CMD /app/run.sh