We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f23d52c + 40b00d7 commit 9a5cc9eCopy full SHA for 9a5cc9e
.github/workflows/stackhpc-build-kayobe-image.yml
@@ -21,6 +21,10 @@ on:
21
no_proxy:
22
type: string
23
required: false
24
+ base_image:
25
+ type: string
26
+ required: false
27
+ default: "rockylinux:9"
28
if:
29
description: Whether to run the workflow (workaround for required status checks issue)
30
type: boolean
@@ -49,7 +53,7 @@ jobs:
49
53
- name: Checkout kayobe config
50
54
uses: actions/checkout@v4
51
55
with:
52
- submodules: true
56
+ submodules: true
57
58
- name: Log in to the Container registry
59
uses: docker/login-action@v3
@@ -88,6 +92,7 @@ jobs:
88
92
build-args: |
89
93
http_proxy=${{ inputs.http_proxy }}
90
94
https_proxy=${{ inputs.https_proxy }}
95
+ BASE_IMAGE=${{ inputs.base_image || 'rockylinux:9' }}
91
96
KAYOBE_USER_UID=1001
97
KAYOBE_USER_GID=1001
98
push: true
0 commit comments