From 2d163f2f9dc187e91433697e92aca0fd3a64cfe6 Mon Sep 17 00:00:00 2001 From: Luke Craig Date: Mon, 27 Jan 2025 11:32:14 -0500 Subject: [PATCH] strip all the result in installer --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 97cc1c40bccd..fdd1cd77f714 100644 --- a/Dockerfile +++ b/Dockerfile @@ -49,7 +49,8 @@ RUN ninja -C /panda/build install # this layer is used to strip shared objects and change python data to be # symlinks to the installed panda data directory FROM installer AS cleanup -RUN find /panda/build -name "*.so" -exec strip {} \; +RUN find /usr/local/lib/x86_64-linux-gnu -name "*.so" -exec strip {} \; +RUN strip /panda/build/contrib/plugins/libpanda_plugin_interface.so FROM base AS panda COPY --from=cleanup /panda/build/libpanda* /usr/local/bin \ No newline at end of file