about summary refs log tree commit diff
path: root/ci/kokoro/install/Dockerfile.fedora-30-shared
diff options
context:
space:
mode:
Diffstat (limited to 'ci/kokoro/install/Dockerfile.fedora-30-shared')
-rw-r--r--ci/kokoro/install/Dockerfile.fedora-30-shared4
1 files changed, 4 insertions, 0 deletions
diff --git a/ci/kokoro/install/Dockerfile.fedora-30-shared b/ci/kokoro/install/Dockerfile.fedora-30-shared
index 3a0accf7026c..572018f994dc 100644
--- a/ci/kokoro/install/Dockerfile.fedora-30-shared
+++ b/ci/kokoro/install/Dockerfile.fedora-30-shared
@@ -50,6 +50,10 @@ RUN cmake -H. -Bcmake-out -DBUILD_SHARED_LIBS=yes
 RUN cmake --build cmake-out -- -j $(nproc)
 WORKDIR /home/build/cpp-cmakefiles/cmake-out
 RUN cmake --build . --target install
+# The share libraries will install in `/usr/local/lib64` we need that directory
+# in the ld.so cache:
+RUN echo "/usr/local/lib64" | tee /etc/ld.so.conf.d/local.conf
+RUN ldconfig
 # ```
 
 ## [END INSTALL.md]