We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cdef5af + 4786a12 commit 1c8baefCopy full SHA for 1c8baef
1 file changed
Containerfile
@@ -75,6 +75,10 @@ ENV HOME="/home/guidellm" \
75
# Create the user home dir
76
WORKDIR $HOME
77
78
+# Ensure that the user home dir can be used by any user
79
+# (OpenShift Pods can't use the cache otherwise)
80
+RUN chgrp -R 0 "$HOME" && chmod -R g=u "$HOME"
81
+
82
# Create a volume for results
83
VOLUME /results
84
0 commit comments