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
Investigate approach with the entrypoint script injection to make the /etc/passwd writable for the arbitrary user:
if ! whoami &> /dev/null; then
if [ -w /etc/passwd ]; then
echo "${USER_NAME:-default}:x:$(id -u):0:${USER_NAME:-default} user:${HOME}:/sbin/nologin" >> /etc/passwd
fi
fi
```
related to https://github.com/eclipse/che/issues/13454
Investigate approach with the entrypoint script injection to make the /etc/passwd writable for the arbitrary user: