Issue
sudoers.so must be writable by owner error message in Build logs
sudo: /usr/lib/sudo/sudoers.so must be only be writable by owner
Resolution
The primary resolution is to backtrack through the Environment layers and find the addition of the file with incorrect permissions OR add this to your Dockerfile:
USER root
RUN \
chown root:root /usr/lib/sudo/sudoers.so && \
chmod 644 /usr/lib/sudo/sudoers.so
Applies to
Seen in various patched and updated DAD images on Domino 4 and Domino 5
Comments
0 comments
Please sign in to leave a comment.