mirror of
https://github.com/yusufipk/dikte.git
synced 2026-09-11 19:06:11 +00:00
The CPU run passed -ng, which tells whisper.cpp not to look for a backend at all, so the claim the bundle rests on, that it starts and transcribes where Vulkan cannot, was never tested. Dikte passes -ng only when its GPU setting is off; every other run goes through the backend registry. Both runs lose the flag, and a third one is added between them: the loader installed, nothing behind it. That is a real machine, libvulkan pulled in by something else with no driver to go with it, and it is the one whose answer nobody knew.
10 lines
423 B
Docker
10 lines
423 B
Docker
FROM ubuntu@sha256:2edbbc5dc405e9612ba3584ce95480277e3eb374407b5505fe26f17df77c7dbc
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
# The loader and nothing behind it: the machine that has libvulkan because
|
|
# something else pulled it in, and no driver to go with it.
|
|
RUN apt-get update \
|
|
&& apt-get install --no-install-recommends -y \
|
|
ca-certificates curl libstdc++6 libvulkan1 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
WORKDIR /bundle
|