File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,9 @@ ARG GO_VERSION=1.24
44ARG LLAMA_SERVER_VERSION=latest
55ARG LLAMA_SERVER_VARIANT=cpu
66ARG LLAMA_BINARY_PATH=/com.docker.llama-server.native.linux.${LLAMA_SERVER_VARIANT}.${TARGETARCH}
7- ARG BASE_IMAGE=ubuntu:24.04
7+
8+ # only 25.10 for cpu variant for max hardware support with vulkan
9+ ARG BASE_IMAGE=ubuntu:25.10
810
911FROM docker.io/library/golang:${GO_VERSION}-bookworm AS builder
1012
Original file line number Diff line number Diff line change 66 apt-get update
77 local packages=(" ca-certificates" )
88 if [ " $LLAMA_SERVER_VARIANT " = " generic" ] || [ " $LLAMA_SERVER_VARIANT " = " cpu" ]; then
9- apt-get install -y libvulkan1
9+ packages+=( " libvulkan1 " " mesa-vulkan-drivers " ))
1010 fi
1111
1212 apt-get install -y " ${packages[@]} "
You can’t perform that action at this time.
0 commit comments