Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions superset/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
FROM apache/superset:4.1.4-py310

# Dialect Trino + driver PyMySQL para o metastore MySQL
RUN pip install --no-cache-dir "trino" "pymysql"
# Dialect Trino + driver PyMySQL para o metastore MySQL
# Dialect ClickHouse + driver ClickHouse para consultas
RUN pip install --no-cache-dir \
"trino" "pymysql" \
"clickhouse-sqlalchemy" \
"clickhouse-driver"