dosubot[bot] commented on issue #33244: URL: https://github.com/apache/superset/issues/33244#issuecomment-2830440309
<!-- Greeting --> Hello @jdorel! I'm [Dosu](https://dosu.dev), your friendly bot here to help you solve bugs, answer questions, and navigate the world of contributions. I'll be assisting you while you wait for a human maintainer. Let’s tackle this together! <!-- Answer --> The issue you're encountering with the missing `run-server.sh` script in the `4.1.2-dockerize` image seems to be related to the build process of the Docker image. According to the Dockerfile, the `run-server.sh` script should be copied to `/usr/bin/` during the build process <sup>[[1]](https://github.com/apache/superset/blob/master/Dockerfile)</sup>. However, if it's missing, it might indicate an oversight or error in the image build. To resolve this, you could manually copy the `run-server.sh` script into the Docker image as a temporary workaround. You can do this by creating a custom Dockerfile that includes the missing script. Here's a basic example of how you might modify the Dockerfile: ```dockerfile FROM apache/superset:4.1.2-dockerize # Copy the run-server.sh script into the image COPY ./path/to/local/run-server.sh /usr/bin/run-server.sh # Ensure the script has the correct permissions RUN chmod +x /usr/bin/run-server.sh ``` Build your custom image with this Dockerfile, and it should include the `run-server.sh` script. This is a temporary solution until the issue is resolved in the official image. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/d1a4fd95-7b43-4a8b-a25e-e4c2c7bff3b2?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/d1a4fd95-7b43-4a8b-a25e-e4c2c7bff3b2?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/d1a4fd95-7b43-4a8b-a25e-e4c2c7bff3b2?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/d1a4fd95-7b43-4a8b-a25e-e4c2c7bff3b2?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/d1a4fd95-7b43-4a8b-a25e-e4c2c7bff3b2?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/d1a4fd95-7b43-4a8b-a25e-e4c2c7bff3b2?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/d1a4fd95-7b43-4a8b-a25e-e4c2c7bff3b2?feedback_type=other)</sup> -- 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]
