about summary refs log tree commit diff
path: root/ci/kokoro/install/Dockerfile.fedora-30-shared
diff options
context:
space:
mode:
authorCarlos O'Ryan <coryan@users.noreply.github.com>2020-01-16T16·04-0500
committerGitHub <noreply@github.com>2020-01-16T16·04-0500
commit52758bec0324a6b120f0bb938f527b1759a0da3d (patch)
tree036e2b7d89f5645b5be7faa25591e2bcaf488453 /ci/kokoro/install/Dockerfile.fedora-30-shared
parent20009f59de903d5a70038adee308020a82e3ecad (diff)
feat: add Cloud Pub/Sub protos (#31)
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]