fix: Dockerfile.vulkan add missing libraries for nvidia support (#1805)

This commit is contained in:
somewhatfrog
2026-07-22 19:45:48 +03:00
committed by GitHub
parent 5e4e03c8dd
commit cfd4cff2e6

View File

@@ -33,7 +33,7 @@ RUN cmake --build ./build --config Release -j$(nproc)
FROM ubuntu:$UBUNTU_VERSION AS runtime FROM ubuntu:$UBUNTU_VERSION AS runtime
RUN apt-get update && \ RUN apt-get update && \
apt-get install --yes --no-install-recommends libgomp1 libvulkan1 mesa-vulkan-drivers && \ apt-get install --yes --no-install-recommends libgomp1 libvulkan1 mesa-vulkan-drivers libglvnd0 libgl1 libglx0 libegl1 libgles2 && \
apt-get clean apt-get clean
COPY --from=build /sd.cpp/build/bin /sd.cpp/bin COPY --from=build /sd.cpp/build/bin /sd.cpp/bin