From 87f76347338304a4423466db41555b023b29fa7f Mon Sep 17 00:00:00 2001 From: Jacky <18255193+kthui@users.noreply.github.com> Date: Tue, 11 Jul 2023 16:27:59 -0700 Subject: [PATCH] Include libtbb.so (#204) --- tools/gen_ort_dockerfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/gen_ort_dockerfile.py b/tools/gen_ort_dockerfile.py index 40c5b84..4cbdaeb 100755 --- a/tools/gen_ort_dockerfile.py +++ b/tools/gen_ort_dockerfile.py @@ -308,6 +308,7 @@ def dockerfile_for_linux(output_file): /opt/onnxruntime/lib && \ cp ${INTEL_OPENVINO_DIR}/runtime/lib/intel64/libopenvino_onnx_frontend.so.${ONNXRUNTIME_OPENVINO_VERSION} \ /opt/onnxruntime/lib && \ + cp /usr/lib/x86_64-linux-gnu/libtbb.so.12 /opt/onnxruntime/lib && \ cp /usr/lib/x86_64-linux-gnu/libpugixml.so.1 /opt/onnxruntime/lib RUN OV_SHORT_VERSION=`echo ${ONNXRUNTIME_OPENVINO_VERSION} | awk '{ split($0,a,"."); print substr(a[1],3) a[2] a[3] }'` && \