From c6607e2c6592fc8aebbcbbd04ce76e20c56af353 Mon Sep 17 00:00:00 2001 From: Kevin Pouget Date: Tue, 17 Feb 2026 16:39:00 +0100 Subject: [PATCH 1/2] Containerfile: ensure that HOME can be used by any user ID OpenShift Pods can't use the cache otherwise Fix: 600 Signed-off-by: Kevin Pouget --- Containerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Containerfile b/Containerfile index ceb5e074d..28fdf1b68 100644 --- a/Containerfile +++ b/Containerfile @@ -75,6 +75,10 @@ ENV HOME="/home/guidellm" \ # Create the user home dir WORKDIR $HOME +# Ensure that the user home dir can be used by any user +# (OpenShift Pods can't use the cache otherwise) +RUN chgrp -R 0 "$HOME" && chmod -R g=u "$HOME" + # Create a volume for results VOLUME /results From 73a0762255951715ae4cc0309619fca67ece1101 Mon Sep 17 00:00:00 2001 From: Kevin Pouget Date: Tue, 17 Feb 2026 17:47:53 +0100 Subject: [PATCH 2/2] Remove trailing space Signed-off-by: Kevin Pouget --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 28fdf1b68..5c95ff8f6 100644 --- a/Containerfile +++ b/Containerfile @@ -75,7 +75,7 @@ ENV HOME="/home/guidellm" \ # Create the user home dir WORKDIR $HOME -# Ensure that the user home dir can be used by any user +# Ensure that the user home dir can be used by any user # (OpenShift Pods can't use the cache otherwise) RUN chgrp -R 0 "$HOME" && chmod -R g=u "$HOME"