Fix chown errors in startup script

- Remove chown on /home mount root (PVC root not owned by container user)
- Change imagePullPolicy to Always to pick up new images on pod restart

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
This commit is contained in:
2026-02-19 17:51:56 -05:00
parent 3794ec60d7
commit 3db5961b1c
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -54,7 +54,6 @@ fi
RUN_UID="${USER_ID:-1000}"
RUN_GID="${GROUP_ID:-1000}"
chown -R "$RUN_UID:$RUN_GID" "$WORKSPACE_DIR"
chown -R "$RUN_UID:$RUN_GID" /home
# Start Happy Coder in background as the app user
echo "Starting Happy Coder..."