Skip to content

Commit

Permalink
Correct logging directory permissions
Browse files Browse the repository at this point in the history
The /var/log/rocm_smi_lib/ directory was world writable. It
is fixed now so that it is world readable. Similarly,
the file in it's directory is also world writable, it is
now world readable.
  • Loading branch information
stevegrubb authored and dtrifiro committed Sep 27, 2024
1 parent d16bf47 commit f63fbdd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile.rocm.ubi
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ RUN umask 002 && \
useradd --uid 2000 --gid 0 vllm && \
mkdir -p /licenses && \
chmod g+rwx $HOME /usr/src /workspace && \
chmod 0664 /var/log/rocm_smi_lib
chmod 0775 /var/log/rocm_smi_lib && \
chmod 0664 /var/log/rocm_smi_lib/*

COPY LICENSE /licenses/vllm.md
COPY examples/*.jinja /app/data/template/
Expand Down

0 comments on commit f63fbdd

Please sign in to comment.