From afb6356f9d9c82b1e5f9856250e0f411a9fc2a39 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 14 Jan 2026 16:29:31 -0500 Subject: [PATCH] Change ownership Container runs as internal 'root' user for now --- container/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/container/Dockerfile b/container/Dockerfile index 1d9ab420..80d3b5de 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -1,7 +1,8 @@ -FROM almalinux:8 +FROM almalinux:9 RUN ["yum", "-y", "update"] -RUN ["rpm", "-ivh", "https://hpc.lenovo.com/yum/latest/el8/x86_64/lenovo-hpc-yum-1-1.x86_64.rpm"] +RUN ["rpm", "-ivh", "https://hpc.lenovo.com/yum/latest/el9/x86_64/lenovo-hpc-yum-1-1.x86_64.rpm"] RUN ["yum", "-y", "install", "lenovo-confluent", "tftp-server", "openssh-clients", "openssl", "vim-enhanced", "iproute"] +RUN ["chown", "-r", "root", "/etc/confluent"] ADD runconfluent.sh /bin/ CMD ["/bin/bash", "/bin/runconfluent.sh"]