Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down