From 202c75571c4ed057e30883be758d5a026c16f987 Mon Sep 17 00:00:00 2001 From: Egor Tyuvaev Date: Wed, 24 Jul 2024 14:27:50 +0200 Subject: [PATCH] Update RHEL UBI8 base template to relax image version --- templates/rhel8/common/base.dockerfile.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/rhel8/common/base.dockerfile.j2 b/templates/rhel8/common/base.dockerfile.j2 index 4d9ac9bb..8ffb3b92 100644 --- a/templates/rhel8/common/base.dockerfile.j2 +++ b/templates/rhel8/common/base.dockerfile.j2 @@ -1,9 +1,9 @@ # Copyright (C) 2019-2024 Intel Corporation # SPDX-License-Identifier: Apache-2.0 {%- if 'docker' == rhel_platform %} -FROM registry.access.redhat.com/ubi8:8.9 AS base +FROM registry.access.redhat.com/ubi8 AS base {% else %} -FROM registry.access.redhat.com/ubi8:8.9 +FROM registry.access.redhat.com/ubi8 LABEL name="rhel8_{{ distribution }}" \ maintainer="openvino_docker@intel.com" \ vendor="Intel Corporation" \ @@ -157,7 +157,7 @@ CMD ["/bin/bash"] {% if 'docker' == rhel_platform %} # ----------------- -FROM registry.access.redhat.com/ubi8:8.9 AS ov_base +FROM registry.access.redhat.com/ubi8 AS ov_base LABEL name="rhel8_{{ distribution }}" \ maintainer="openvino_docker@intel.com" \