stringang commented on issue #13539: URL: https://github.com/apache/superset/issues/13539#issuecomment-895015935
you can extend the official image. ``` FROM apache/superset # Switching to root to install the required packages USER root # Example: installing the MySQL driver to connect to the metadata database # if you prefer Postgres, you may want to use `psycopg2-binary` instead RUN pip install mysqlclient # Example: installing a driver to connect to Redshift # Find which driver you need based on the analytics database # you want to connect to here: # https://superset.apache.org/installation.html#database-dependencies RUN pip install sqlalchemy-redshift # Switching back to using the `superset` user USER superset ``` [reference](https://hub.docker.com/r/apache/superset) -- 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]
