Skip to content

Commit 373d638

Browse files
committed
Docker: Fix permissions of existing log files in entrypoint.
1 parent 0bb3037 commit 373d638

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

brev/entrypoint.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ if [ "$(id -u)" = "0" ]; then
6666

6767
# Ensure logs directory exists and is writable by the user
6868
mkdir -p /accelerated-computing-hub/logs
69-
chown "${TARGET_USER}:$(id -gn ${TARGET_USER})" /accelerated-computing-hub/logs
69+
chown -R "${TARGET_USER}:$(id -gn ${TARGET_USER})" /accelerated-computing-hub/logs
7070
fi
7171

7272
# Dispatch to service-specific entrypoint

0 commit comments

Comments
 (0)