Skip to content

Commit

Permalink
Update default packages and docker files to 2024.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RaguzovaTatyana committed Mar 6, 2024
1 parent 934f1af commit 69c68ae
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ FROM registry.access.redhat.com/ubi8:8.9 AS ov_base
LABEL name="rhel8_dev" \
maintainer="[email protected]" \
vendor="Intel Corporation" \
version="2023.0.0" \
release="2023.0.0" \
version="2024.0.0" \
release="2024.0.0" \
summary="Provides the latest release of Intel(R) Distribution of OpenVINO(TM) toolkit." \
description="This is the dev image for Intel(R) Distribution of OpenVINO(TM) toolkit on RHEL UBI 8"

Expand Down Expand Up @@ -282,7 +282,7 @@ RUN ${PYTHON_VER} -m pip install --upgrade pip

# dev package
WORKDIR ${INTEL_OPENVINO_DIR}
ARG OPENVINO_WHEELS_VERSION=2023.0.0
ARG OPENVINO_WHEELS_VERSION=2024.0.0
ARG OPENVINO_WHEELS_URL
# hadolint ignore=SC2102,DL3033
RUN yum install -y cmake git && yum clean all && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ FROM registry.access.redhat.com/ubi8:8.9 AS ov_base
LABEL name="rhel8_runtime" \
maintainer="[email protected]" \
vendor="Intel Corporation" \
version="2023.0.0" \
release="2023.0.0" \
version="2024.0.0" \
release="2024.0.0" \
summary="Provides the latest release of Intel(R) Distribution of OpenVINO(TM) toolkit." \
description="This is the runtime image for Intel(R) Distribution of OpenVINO(TM) toolkit on RHEL UBI 8"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ RUN ${PYTHON_VER} -m pip install --upgrade pip

# dev package
WORKDIR ${INTEL_OPENVINO_DIR}
ARG OPENVINO_WHEELS_VERSION=2023.0.0
ARG OPENVINO_WHEELS_VERSION=2024.0.0
ARG OPENVINO_WHEELS_URL
# hadolint ignore=SC2102
RUN apt-get update && apt-get install -y --no-install-recommends cmake make git && rm -rf /var/lib/apt/lists/* && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ RUN ${PYTHON_VER} -m pip install --upgrade pip

# dev package
WORKDIR ${INTEL_OPENVINO_DIR}
ARG OPENVINO_WHEELS_VERSION=2023.0.0
ARG OPENVINO_WHEELS_VERSION=2024.0.0
ARG OPENVINO_WHEELS_URL
# hadolint ignore=SC2102
RUN apt-get update && apt-get install -y --no-install-recommends cmake make git && rm -rf /var/lib/apt/lists/* && \
Expand Down
23 changes: 23 additions & 0 deletions utils/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,29 @@
'linux/l_openvino_toolkit_rhel8_2023.3.0.13775.ceeafaf64f3_x86_64.tgz',
},
},
'2024.0.0': {
'ubuntu22':
{
'dev': 'https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.0/'
'linux/l_openvino_toolkit_ubuntu22_2024.0.0.14509.34caeefd078_x86_64.tgz',
'runtime': 'https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.0/'
'linux/l_openvino_toolkit_ubuntu22_2024.0.0.14509.34caeefd078_x86_64.tgz',
},
'ubuntu20':
{
'dev': 'https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.0/'
'linux/l_openvino_toolkit_ubuntu20_2024.0.0.14509.34caeefd078_x86_64.tgz',
'runtime': 'https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.0/'
'linux/l_openvino_toolkit_ubuntu20_2024.0.0.14509.34caeefd078_x86_64.tgz',
},
'rhel8':
{
'dev': 'https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.0/'
'linux/l_openvino_toolkit_rhel8_2024.0.0.14509.34caeefd078_x86_64.tgz',
'runtime': 'https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.0/'
'linux/l_openvino_toolkit_rhel8_2024.0.0.14509.34caeefd078_x86_64.tgz',
},
},
}
DIVE_URL = {
'windows': 'https://github.com/wagoodman/dive/releases/download/v0.9.2/dive_0.9.2_windows_amd64.zip',
Expand Down
2 changes: 1 addition & 1 deletion utils/tests/check_loader_links.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def check_release_links(product_version: str) -> typing.Set[bool]:
# check package availability
req = Request(url, method='HEAD')
try:
response = urlopen(req, timeout=4) # nosec # noqa: S310
response = urlopen(req, timeout=10) # nosec # noqa: S310
length = int(response.headers['Content-Length'])
if response.status != 200 or length <= 1000000:
results.add(check_and_print_error(False, f'{prefix} network error {response.status}, '
Expand Down

0 comments on commit 69c68ae

Please sign in to comment.