-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update RHEL UBI8 base template to relax image version
- Loading branch information
1 parent
ea2fa04
commit 202c755
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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="[email protected]" \ | ||
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="[email protected]" \ | ||
|