-
Notifications
You must be signed in to change notification settings - Fork 14.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating superset frontend on production #23679
Comments
Hi Team, |
Hey.. I am also facing same issue. |
Got the reason. It's pulling the frontend code from dockerhub image. in So it's not building from updated source code in local. |
Perfect remark, have you found a solution to modify the frontend in production ? Thanks |
Hey, Sorry. But I have added the |
But even here on your local yml; you didn’t change source repository, it comes from apache/superset : |
I had to do something similar to what OP was struggling with. I added some custom geojsons for the country map chart. I compiled my own docker image with the changes using the following command: docker build -t my-custom-superset . And then inside my x-superset-image: &superset-image apachesuperset.docker.scarf.sh/apache/superset:${TAG:-latest} to x-superset-image: &superset-image my-custom-superset:latest |
Seems like this thread has gone silent, and I assume all is well. If others in the future run into such things, please feel free to open a Q&A Discussion, join the Also, if anyone on this thread feels that any of the above should be part of Superset's documentation, I strongly encourage you to make an easy PR and update the markdown files with relevant info. Thanks! |
Hi guys,
I'm trying to update production build assets for superset, but It looks like it's not updating.
Steps I'm doing:
But when I build the a docker image, or get the app up with docker compose non-dev file, I'm getting the original version of the frontend. What can I do to get the frontend updated whitout have to run the frontend separately?
The text was updated successfully, but these errors were encountered: