AndreaBozzo commented on PR #487: URL: https://github.com/apache/hudi-rs/pull/487#issuecomment-3679109430
Last 2 commits, this helps if the problem persists. **Root cause:** The Docker container runs as `HOST_UID:HOST_GID` (non-root), but Python and venv were installed by root during image build. **Changes:** 1. `UV_PYTHON_INSTALL_DIR=/opt/python` - Install Python in shared location instead of `/root/.local/share/` 2. `chmod -R a+rX /opt/python` - Make Python readable by any user 3. `chmod -R a+rwX /opt/.venv` - Make venv writable (needed for `pip install` to create new directories) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
