2024-02-02 07:56:31 +00:00
|
|
|
ARG UBUNTU_VERSION=jammy
|
|
|
|
|
2024-07-17 18:21:55 +00:00
|
|
|
FROM ubuntu:$UBUNTU_VERSION AS build
|
2024-02-02 07:56:31 +00:00
|
|
|
|
|
|
|
# Install build tools
|
|
|
|
RUN apt update && apt install -y git build-essential cmake wget
|
|
|
|
|
2024-06-25 15:13:27 +00:00
|
|
|
# Install Vulkan SDK and cURL
|
2024-02-02 07:56:31 +00:00
|
|
|
RUN wget -qO - https://packages.lunarg.com/lunarg-signing-key-pub.asc | apt-key add - && \
|
|
|
|
wget -qO /etc/apt/sources.list.d/lunarg-vulkan-jammy.list https://packages.lunarg.com/vulkan/lunarg-vulkan-jammy.list && \
|
|
|
|
apt update -y && \
|
2024-06-25 15:13:27 +00:00
|
|
|
apt-get install -y vulkan-sdk libcurl4-openssl-dev curl
|
2024-04-04 16:31:22 +00:00
|
|
|
|
2024-02-02 07:56:31 +00:00
|
|
|
# Build it
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
2024-06-26 16:32:07 +00:00
|
|
|
RUN cmake -B build -DGGML_VULKAN=1 -DLLAMA_CURL=1 && \
|
2024-06-12 23:41:52 +00:00
|
|
|
cmake --build build --config Release --target llama-server
|
2024-02-02 07:56:31 +00:00
|
|
|
|
|
|
|
# Clean up
|
|
|
|
WORKDIR /
|
2024-06-12 23:41:52 +00:00
|
|
|
RUN cp /app/build/bin/llama-server /llama-server && \
|
2024-02-02 07:56:31 +00:00
|
|
|
rm -rf /app
|
|
|
|
|
|
|
|
ENV LC_ALL=C.utf8
|
2024-08-27 09:07:01 +00:00
|
|
|
# Must be set to 0.0.0.0 so it can listen to requests from host machine
|
|
|
|
ENV LLAMA_ARG_HOST=0.0.0.0
|
2024-02-02 07:56:31 +00:00
|
|
|
|
2024-06-25 15:13:27 +00:00
|
|
|
HEALTHCHECK CMD [ "curl", "-f", "http://localhost:8080/health" ]
|
|
|
|
|
2024-06-12 23:41:52 +00:00
|
|
|
ENTRYPOINT [ "/llama-server" ]
|