File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -361,6 +361,8 @@ def dockerfile_for_linux(output_file):
361
361
RUN cp /workspace/onnxruntime/include/onnxruntime/core/providers/openvino/openvino_provider_factory.h \
362
362
/opt/onnxruntime/include
363
363
364
+ RUN apt-get update && apt-get install -y --no-install-recommends libtbb2
365
+
364
366
RUN cp /workspace/build/${ONNXRUNTIME_BUILD_CONFIG}/libonnxruntime_providers_openvino.so \
365
367
/opt/onnxruntime/lib && \
366
368
cp ${INTEL_OPENVINO_DIR}/runtime/lib/intel64/libopenvino.so.${ONNXRUNTIME_OPENVINO_VERSION} \
@@ -447,7 +449,7 @@ def dockerfile_for_windows(output_file):
447
449
ARG ONNXRUNTIME_VERSION
448
450
ARG ONNXRUNTIME_REPO
449
451
RUN git clone -b rel-%ONNXRUNTIME_VERSION% --recursive %ONNXRUNTIME_REPO% onnxruntime && \
450
- ( cd onnxruntime && git submodule update --init --recursive)
452
+ cd onnxruntime && git submodule update --init --recursive
451
453
"""
452
454
453
455
if FLAGS .onnx_tensorrt_tag != "" :
@@ -661,4 +663,4 @@ def preprocess_gpu_flags():
661
663
FLAGS .ort_openvino = None
662
664
dockerfile_for_windows (FLAGS .output )
663
665
else :
664
- dockerfile_for_linux (FLAGS .output )
666
+ dockerfile_for_linux (FLAGS .output )
You can’t perform that action at this time.
0 commit comments