You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commit 34f3ae9 introduced an initial support to handling better the permissions of files and folder that are used by the runtime user.
The resources chown is always demanded to downstream images. To streamline this operation we should introduce a new utility function that takes a folder and changes the group owner of all the files that are not already owned by the runtimeusers group.
Note that we have to filter the files with find -group root because chowning again a file in a layer would result in a dummy modification belonging to that layer. This operation would mark that file as modified (even if it was only touched by chown), making the image size increase without any reason.
The text was updated successfully, but these errors were encountered:
Commit 34f3ae9 introduced an initial support to handling better the permissions of files and folder that are used by the runtime user.
The resources chown is always demanded to downstream images. To streamline this operation we should introduce a new utility function that takes a folder and changes the group owner of all the files that are not already owned by the
runtimeusers
group.Note that we have to filter the files with
find -group root
because chowning again a file in a layer would result in a dummy modification belonging to that layer. This operation would mark that file as modified (even if it was only touched by chown), making the image size increase without any reason.The text was updated successfully, but these errors were encountered: