Skip to content

Commit 6af6810

Browse files
committed
Add support for TARGET=rhel10
Signed-off-by: Petr "Stone" Hracek <[email protected]>
1 parent 956bbd3 commit 6af6810

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# This script is used to build the OpenShift Docker images.
44
#
5-
# OS - Specifies distribution - "rhel8", "rhel9", "c9s", "c10s" or "fedora"
5+
# OS - Specifies distribution - "rhel8", "rhel9", "rhel10", "c9s", "c10s" or "fedora"
66
# VERSION - Specifies the image version - (must match with subdirectory in repo)
77
# SINGLE_VERSION - Specifies the image version - (must match with subdirectory in repo)
88
# VERSIONS - Must be set to a list with possible versions (subdirectories)

common.mk

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ ifeq ($(TARGET),rhel8)
3838
else ifeq ($(TARGET),rhel9)
3939
OS := rhel9
4040
DOCKERFILE ?= Dockerfile.rhel9
41+
else ifeq ($(TARGET),rhel10)
42+
OS := rhel10
43+
DOCKERFILE ?= Dockerfile.rhel10
4144
else ifeq ($(TARGET),fedora)
4245
OS := fedora
4346
DOCKERFILE ?= Dockerfile.fedora

0 commit comments

Comments
 (0)