bobbai00 opened a new issue, #3810: URL: https://github.com/apache/texera/issues/3810
## Problem The pylsp Docker container fails to start with an exec format error: ``` exec /usr/src/app/run_pylsp.sh: exec format error ``` This occurs because the `python:3.10-slim` base image may not include bash by default, causing the bash script to fail execution. ## Solution - Explicitly install bash in the container - Update ENTRYPOINT to use `/usr/bin/env bash` for proper script execution PR with fix: incoming -- 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]
