From a822e3ef766f7c80e846117b189160d24f1540e6 Mon Sep 17 00:00:00 2001 From: Tatyana Raguzova Date: Thu, 22 Feb 2024 11:12:06 +0100 Subject: [PATCH] [dockerfiles] Disabled dnn and gapi in opencv to fix build issue (#296) --- dockerfiles/rhel8/openvino_cg_dev_2023.0.0.dockerfile | 2 ++ dockerfiles/ubuntu20/openvino_cg_dev_2023.0.0.dockerfile | 2 ++ dockerfiles/ubuntu22/openvino_cg_dev_2023.0.0.dockerfile | 2 ++ 3 files changed, 6 insertions(+) diff --git a/dockerfiles/rhel8/openvino_cg_dev_2023.0.0.dockerfile b/dockerfiles/rhel8/openvino_cg_dev_2023.0.0.dockerfile index 81cccf00..140b0f16 100644 --- a/dockerfiles/rhel8/openvino_cg_dev_2023.0.0.dockerfile +++ b/dockerfiles/rhel8/openvino_cg_dev_2023.0.0.dockerfile @@ -162,6 +162,8 @@ RUN . "${INTEL_OPENVINO_DIR}"/setupvars.sh; \ -D BUILD_opencv_world=OFF \ -D BUILD_opencv_python2=OFF \ -D BUILD_opencv_python3=ON \ + -D BUILD_opencv_dnn=OFF \ + -D BUILD_opencv_gapi=OFF \ -D PYTHON3_PACKAGES_PATH=install/python/python3 \ -D PYTHON3_LIMITED_API=ON \ -D HIGHGUI_PLUGIN_LIST=all \ diff --git a/dockerfiles/ubuntu20/openvino_cg_dev_2023.0.0.dockerfile b/dockerfiles/ubuntu20/openvino_cg_dev_2023.0.0.dockerfile index 155939b4..a10fd336 100644 --- a/dockerfiles/ubuntu20/openvino_cg_dev_2023.0.0.dockerfile +++ b/dockerfiles/ubuntu20/openvino_cg_dev_2023.0.0.dockerfile @@ -171,6 +171,8 @@ RUN . "${INTEL_OPENVINO_DIR}"/setupvars.sh; \ -D BUILD_opencv_world=OFF \ -D BUILD_opencv_python2=OFF \ -D BUILD_opencv_python3=ON \ + -D BUILD_opencv_dnn=OFF \ + -D BUILD_opencv_gapi=OFF \ -D PYTHON3_PACKAGES_PATH=install/python/python3 \ -D PYTHON3_LIMITED_API=ON \ -D HIGHGUI_PLUGIN_LIST=all \ diff --git a/dockerfiles/ubuntu22/openvino_cg_dev_2023.0.0.dockerfile b/dockerfiles/ubuntu22/openvino_cg_dev_2023.0.0.dockerfile index 7fe141d5..6cebd840 100644 --- a/dockerfiles/ubuntu22/openvino_cg_dev_2023.0.0.dockerfile +++ b/dockerfiles/ubuntu22/openvino_cg_dev_2023.0.0.dockerfile @@ -170,6 +170,8 @@ RUN . "${INTEL_OPENVINO_DIR}"/setupvars.sh; \ -D BUILD_opencv_world=OFF \ -D BUILD_opencv_python2=OFF \ -D BUILD_opencv_python3=ON \ + -D BUILD_opencv_dnn=OFF \ + -D BUILD_opencv_gapi=OFF \ -D PYTHON3_PACKAGES_PATH=install/python/python3 \ -D PYTHON3_LIMITED_API=ON \ -D HIGHGUI_PLUGIN_LIST=all \