From 48776efda7d54454dd4318a33a81fd5061995b79 Mon Sep 17 00:00:00 2001 From: Tatyana Raguzova Date: Wed, 24 Jan 2024 12:08:45 +0100 Subject: [PATCH] Upgrade rhel base image from 8.8 to 8.9 (#295) --- dockerfiles/rhel8/openvino_cg_dev_2023.0.0.dockerfile | 4 ++-- dockerfiles/rhel8/openvino_cg_runtime_2023.0.0.dockerfile | 4 ++-- templates/rhel8/common/base.dockerfile.j2 | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dockerfiles/rhel8/openvino_cg_dev_2023.0.0.dockerfile b/dockerfiles/rhel8/openvino_cg_dev_2023.0.0.dockerfile index 16564514..81cccf00 100644 --- a/dockerfiles/rhel8/openvino_cg_dev_2023.0.0.dockerfile +++ b/dockerfiles/rhel8/openvino_cg_dev_2023.0.0.dockerfile @@ -1,6 +1,6 @@ # Copyright (C) 2019-2022 Intel Corporation # SPDX-License-Identifier: Apache-2.0 -FROM registry.access.redhat.com/ubi8:8.8 AS base +FROM registry.access.redhat.com/ubi8:8.9 AS base # hadolint ignore=DL3002 USER root WORKDIR / @@ -186,7 +186,7 @@ CMD ["/bin/bash"] # ----------------- -FROM registry.access.redhat.com/ubi8:8.8 AS ov_base +FROM registry.access.redhat.com/ubi8:8.9 AS ov_base LABEL name="rhel8_dev" \ maintainer="openvino_docker@intel.com" \ diff --git a/dockerfiles/rhel8/openvino_cg_runtime_2023.0.0.dockerfile b/dockerfiles/rhel8/openvino_cg_runtime_2023.0.0.dockerfile index 6303032b..4279d328 100644 --- a/dockerfiles/rhel8/openvino_cg_runtime_2023.0.0.dockerfile +++ b/dockerfiles/rhel8/openvino_cg_runtime_2023.0.0.dockerfile @@ -1,6 +1,6 @@ # Copyright (C) 2019-2022 Intel Corporation # SPDX-License-Identifier: Apache-2.0 -FROM registry.access.redhat.com/ubi8:8.8 AS base +FROM registry.access.redhat.com/ubi8:8.9 AS base # hadolint ignore=DL3002 USER root WORKDIR / @@ -61,7 +61,7 @@ RUN rm -rf ${INTEL_OPENVINO_DIR}/.distribution && mkdir ${INTEL_OPENVINO_DIR}/.d # ----------------- -FROM registry.access.redhat.com/ubi8:8.8 AS ov_base +FROM registry.access.redhat.com/ubi8:8.9 AS ov_base LABEL name="rhel8_runtime" \ maintainer="openvino_docker@intel.com" \ diff --git a/templates/rhel8/common/base.dockerfile.j2 b/templates/rhel8/common/base.dockerfile.j2 index 4906626f..a1f60e65 100644 --- a/templates/rhel8/common/base.dockerfile.j2 +++ b/templates/rhel8/common/base.dockerfile.j2 @@ -1,9 +1,9 @@ # Copyright (C) 2019-2022 Intel Corporation # SPDX-License-Identifier: Apache-2.0 {%- if 'docker' == rhel_platform %} -FROM registry.access.redhat.com/ubi8:8.8 AS base +FROM registry.access.redhat.com/ubi8:8.9 AS base {% else %} -FROM registry.access.redhat.com/ubi8:8.8 +FROM registry.access.redhat.com/ubi8:8.9 LABEL name="rhel8_{{ distribution }}" \ maintainer="openvino_docker@intel.com" \ vendor="Intel Corporation" \ @@ -155,7 +155,7 @@ CMD ["/bin/bash"] {% if 'docker' == rhel_platform %} # ----------------- -FROM registry.access.redhat.com/ubi8:8.8 AS ov_base +FROM registry.access.redhat.com/ubi8:8.9 AS ov_base LABEL name="rhel8_{{ distribution }}" \ maintainer="openvino_docker@intel.com" \