Skip to content

Commit 471890f

Browse files
Fix centos-stream-9 container image build
I can't find why previous builds (January 2026) worked but now we need to enable the mariadb module. ``` bash-5.1# dnf module list mariadb CentOS Stream 9 - AppStream Name Stream Profiles Summary mariadb 10.11 client, galera, server [d] MariaDB Module mariadb 11.8 client, galera, server [d] MariaDB Module ``` ``` dnf module enable mariadb:11.8 -y bash-5.1# dnf repoquery --source mariadb-server mariadb-11.8.5-1.module_el9+1304+6dbdc612.src.rpm ```
1 parent dfa69f3 commit 471890f

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

ci_build_images/centos.Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ RUN dnf -y install 'dnf-command(config-manager)' \
3333
&& case "$ID" in \
3434
"centos") \
3535
ID=centos-stream; \
36+
if [ "$VERSION_ID" = "9" ]; then \
37+
dnf module enable mariadb:11.8 -y; \
38+
fi; \
3639
;; \
3740
"openEuler") \
3841
ID=openeuler; \

0 commit comments

Comments
 (0)