Skip to content

Commit bc87579

Browse files
committed
Use Rocky Linux 9 as base for kayobe-automation
By default, kayobe-automation uses CentOS Stream 8 as the base image for its kayobe docker image. As it doesn't support python 3.8 (a requirement for the Zed release), it must be overridden to use Rocky Linux 9.
1 parent 92cee1c commit bc87579

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/stackhpc-build-kayobe-image.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ on:
1616
no_proxy:
1717
type: string
1818
required: false
19+
base_image:
20+
type: string
21+
required: false
22+
default: "rockylinux:9"
1923
outputs:
2024
kayobe_image:
2125
description: Reference of Kayobe image that was built
@@ -39,7 +43,7 @@ jobs:
3943
- name: Checkout kayobe config
4044
uses: actions/checkout@v3
4145
with:
42-
submodules: true
46+
submodules: true
4347

4448
- name: Log in to the Container registry
4549
uses: docker/login-action@v2
@@ -76,6 +80,7 @@ jobs:
7680
build-args: |
7781
http_proxy=${{ inputs.http_proxy }}
7882
https_proxy=${{ inputs.https_proxy }}
83+
BASE_IMAGE=${{ inputs.base_image }}
7984
push: true
8085
tags: ${{ steps.meta.outputs.tags }}
8186
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)