This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Custom Superset build to add apache pinot driver | |
# Gary A. Stafford (2022-09-25) | |
# Updated: 2022-12-18 | |
FROM apache/superset:66138b0ca0b82a94404e058f0cc55517b2240069 | |
# Switching to root to install the required packages | |
USER root | |
# Find which driver you need based on the analytics database: | |
# https://superset.apache.org/docs/databases/installing-database-drivers | |
RUN pip install mysqlclient psycopg2-binary pinotdb | |
# Switching back to using the `superset` user | |
USER superset |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment