Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade RH base image from 8.8 to 8.9 #295

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dockerfiles/rhel8/openvino_cg_dev_2023.0.0.dockerfile
Original file line number Diff line number Diff line change
@@ -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 /
Expand Down Expand Up @@ -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="[email protected]" \
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/rhel8/openvino_cg_runtime_2023.0.0.dockerfile
Original file line number Diff line number Diff line change
@@ -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 /
Expand Down Expand Up @@ -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="[email protected]" \
Expand Down
6 changes: 3 additions & 3 deletions templates/rhel8/common/base.dockerfile.j2
Original file line number Diff line number Diff line change
@@ -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="[email protected]" \
vendor="Intel Corporation" \
Expand Down Expand Up @@ -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="[email protected]" \
Expand Down
Loading