Skip to content

Commit e5c5835

Browse files
authored
Merge pull request #2031 from containers/fix-rag-libGL
build_rag.sh: add libraries required by opencv-python
2 parents 92f8714 + e826c01 commit e5c5835

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

container-images/scripts/build_rag.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ main() {
8383
python=$(python_version)
8484
local pkgs
8585
if available dnf; then
86-
pkgs=("git-core" "gcc" "gcc-c++" "cmake")
86+
pkgs=("git-core" "gcc" "gcc-c++" "cmake" "libglvnd-glx")
8787
else
88-
pkgs=("git" "gcc" "g++" "cmake")
88+
pkgs=("git" "gcc" "g++" "cmake" "libgl1" "libglib2.0-0")
8989
fi
9090
if [ "${gpu}" = "cuda" ]; then
9191
pkgs+=("libcudnn9-devel-cuda-12" "libcusparselt0" "cuda-cupti-12-*")

0 commit comments

Comments
 (0)