diff --git a/packaging/docker/Dockerfile.debian-multiarch b/packaging/docker/Dockerfile.debian-multiarch
index 306b979a4..73ea3f397 100644
--- a/packaging/docker/Dockerfile.debian-multiarch
+++ b/packaging/docker/Dockerfile.debian-multiarch
@@ -172,11 +172,11 @@ RUN echo "${PREFIX}/lib" >> /etc/ld.so.conf && \
 
 ENV PATH=${PREFIX}/bin:${PATH}
 
-# run find -name libvillas.so and store it in variable
-RUN find / -name libvillas.so > /tmp/libvillas_path.txt && \
-    echo "The path to libvillas.so is $(cat /tmp/libvillas_path.txt)" && \
-RUN export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(dirname $(cat /tmp/libvillas_path.txt)) && \
-RUN rm /tmp/libvillas_path.txt
+# # run find -name libvillas.so and store it in variable
+# RUN find / -name libvillas.so > /tmp/libvillas_path.txt && \
+#     echo "The path to libvillas.so is $(cat /tmp/libvillas_path.txt)" && \
+# RUN export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(dirname $(cat /tmp/libvillas_path.txt)) && \
+# RUN rm /tmp/libvillas_path.txt
 
 # Test if it runs
 RUN villas node -h 2>&1 > /dev/null