dosubot[bot] commented on issue #30663: URL: https://github.com/apache/superset/issues/30663#issuecomment-2426895583
<!-- Greeting --> Hey @skemaikin! 👋 I'm here to help you with any bugs, questions, or contributions you have regarding Superset 4.0.X. I'm your friendly bot, [Dosu](https://dosu.dev), and I'm here to assist you while you wait for a human maintainer. <!-- Answer --> The issue you're encountering with the custom build process for Superset 4.0.1 and 4.0.2 getting stuck is due to using an unsupported Node.js version. The build process requires Node.js version 18.x, but your current setup is using Node.js version 16.20.2. To resolve this, you should update your Dockerfile to use Node.js version 18.x. Here's a snippet from the `Dockerfile.from_local_tarball` that shows how to set up Node.js 18.x: ```dockerfile # Install nodejs for custom build # https://nodejs.org/en/download/package-manager/ RUN set -eux; \ curl -sL https://deb.nodesource.com/setup_18.x | bash -; \ apt-get install -y nodejs; \ node --version; ``` Make sure your Dockerfile includes this setup to ensure compatibility with the required Node.js version for Superset 4.0.1 and 4.0.2 <sup>[[1]](https://github.com/apache/superset/blob/master/RELEASING/Dockerfile.from_local_tarball)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
