- switch Superset ClickHouse URI back to clickhousedb://\n- refresh dataset metadata during init to restore filter columns\n- install runtime deps in image layer and add troubleshooting notes
12 lines
265 B
Docker
12 lines
265 B
Docker
FROM apache/superset:4.1.2-dev
|
|
|
|
USER root
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y bind9-host bat less iputils-ping curl postgresql-client && \
|
|
apt-get clean
|
|
|
|
RUN pip install --no-cache-dir clickhouse-connect==0.8.* psycopg2-binary==2.9.*
|
|
|
|
USER superset
|