Skip to content

Commit 6fcff34

Browse files
mzegladtrawins
andauthored
Update dockerfiles to build with OV 2020.4 by default (#290)
Co-authored-by: Dariusz Trawinski <dariusz.trawinski@intel.com>
1 parent 92abde9 commit 6fcff34

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN curl -o GPG-PUB-KEY-INTEL-OPENVINO-2020 https://apt.repos.intel.com/openvino
1313
RUN apt-key add GPG-PUB-KEY-INTEL-OPENVINO-2020
1414
RUN echo "deb https://apt.repos.intel.com/openvino/2020/ all main" > /etc/apt/sources.list.d/intel-openvino-2020.list
1515

16-
RUN apt-get update && apt-get install -y intel-openvino-dev-ubuntu18-2020.3.194
16+
RUN apt-get update && apt-get install -y intel-openvino-dev-ubuntu18-2020.4.287
1717

1818
ENV DL_INSTALL_DIR=/opt/intel/openvino/deployment_tools
1919
ENV PYTHONPATH="/opt/intel/openvino/python/python3.6"

Dockerfile_binary_openvino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ RUN mkdir -p $TEMP_DIR && cd $TEMP_DIR/ && \
3333
*openvino_toolkit_fpga_2019.2) \
3434
COMPONENTS='intel-openvino-full__noarch;intel-openvino-dldt-full__noarch;intel-openvino-setupvars__x86_64;intel-openvino-ie-sdk-ubuntu-xenial__x86_64;intel-openvino-ie-rt__x86_64;intel-openvino-ie-rt-core-ubuntu-xenial__x86_64;intel-openvino-ie-rt-cpu-ubuntu-xenial__x86_64;intel-openvino-ie-rt-vpu-ubuntu-xenial__x86_64;intel-openvino-ie-rt-hddl-ubuntu-xenial__x86_64;intel-openvino-gfx-driver__x86_64;intel-openvino-full-pset' \
3535
;; \
36-
*openvino_toolkit_p_2019.3* | *openvino_toolkit_p_2020.1* | *openvino_toolkit_p_2020.2*) \
36+
*openvino_toolkit_p_2019.3* | *openvino_toolkit_p_2020.1* | *openvino_toolkit_p_2020.2* | *openvino_toolkit_p_2020.3* | *openvino_toolkit_p_2020.4*) \
3737
COMPONENTS='intel-openvino-base__noarch;intel-openvino-dldt-base__noarch;intel-openvino-setupvars__noarch;intel-openvino-eula__noarch;intel-openvino-ie-sdk-ubuntu-xenial__x86_64;intel-openvino-ie-bin-python-tools-ubuntu-xenial__x86_64;intel-openvino-ie-samples__x86_64;intel-openvino-ie-rt__x86_64;intel-openvino-ie-bin-3rd-debug__x86_64;intel-openvino-ie-rt-core-ubuntu-xenial__x86_64;intel-openvino-ie-rt-cpu-ubuntu-xenial__x86_64;intel-openvino-ie-rt-gpu-ubuntu-xenial__x86_64;intel-openvino-ie-rt-vpu-ubuntu-xenial__x86_64;intel-openvino-ie-rt-gna-ubuntu-xenial__x86_64;intel-openvino-ie-rt-hddl-ubuntu-xenial__x86_64;intel-openvino-omz-tools__x86_64;intel-openvino-docs__noarch;intel-openvino-gfx-driver-ubuntu-xenial__x86_64;intel-openvino-base-pset' \
3838
;; \
3939
*openvino_toolkit_fpga_2019.3*) \

Dockerfile_clearlinux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM clearlinux as build
22

3-
ARG ov_source_branch=2020.3.0
3+
ARG ov_source_branch=2020.4
44

55
# Stage for building TF serving API for Python 3.8
66
RUN swupd bundle-add \

Dockerfile_openvino_base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openvino/ubuntu18_runtime:2020.3
1+
FROM openvino/ubuntu18_runtime:2020.4
22
USER root
33

44
RUN apt-get update && apt-get install -y --no-install-recommends \

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ CONFIG := "$(CONFIG)"
2828
ML_DIR := "$(MK_DIR)"
2929
HTTP_PROXY := "$(http_proxy)"
3030
HTTPS_PROXY := "$(https_proxy)"
31-
OVMS_VERSION := "2020.3"
31+
OVMS_VERSION := "2020.4"
3232
DLDT_PACKAGE_URL := "$(dldt_package_url)"
33-
OV_SOURCE_BRANCH ?= "2020.3.0"
33+
OV_SOURCE_BRANCH ?= "2020.4"
3434

3535
TEST_MODELS_DIR = /tmp/ovms_models
3636
DOCKER_OVMS_TAG ?= ie-serving-py:latest

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
setup(
2020
name='ie_serving',
21-
version="2020.3",
21+
version="2020.4",
2222
description="DLDT inference server",
2323
long_description="""DLDT inference server""",
2424
keywords='',

tests/scripts/functional-tests-bin.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ DOCKER_OVMS_TAG="ie-serving-bin:latest"
66
export TESTS_SUFFIX="bin"
77
export PORTS_PREFIX="92 57"
88

9-
make DOCKER_OVMS_TAG=${DOCKER_OVMS_TAG} docker_build_bin dldt_package_url=${OPENVINO_DOWNLOAD_LINK_2020_3}
9+
make DOCKER_OVMS_TAG=${DOCKER_OVMS_TAG} docker_build_bin dldt_package_url=${OPENVINO_DOWNLOAD_LINK_2020_4}
1010

1111
. .venv-jenkins/bin/activate
1212

tests/scripts/unit-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LD_LIBRARY_PATH+=:/opt/intel/openvino/deployment_tools/inference_engine/external
77
LD_LIBRARY_PATH+=:/opt/intel/openvino/deployment_tools/inference_engine/lib/intel64
88
LD_LIBRARY_PATH+=:/opt/intel/openvino/deployment_tools/ngraph/lib
99

10-
OPEN_VINO_DOCKER_IMAGE=openvino/ubuntu18_dev:2020.3
10+
OPEN_VINO_DOCKER_IMAGE=openvino/ubuntu18_dev:2020.4
1111
OVMS_TESTS_IMAGE="${OPEN_VINO_DOCKER_IMAGE}-ovms-tests"
1212

1313
docker build \

0 commit comments

Comments
 (0)