8 lines
322 B
Docker
8 lines
322 B
Docker
# Custom Superset image with Trino, PostgreSQL, and Redis drivers
|
|
# Base image: uses Harbor proxy cache in CI, falls back to Docker Hub externally
|
|
FROM registry.celestium.life/dockerhub-cache/apache/superset:latest
|
|
|
|
USER root
|
|
RUN /app/docker/pip-install.sh --no-cache trino[sqlalchemy] psycopg2-binary redis
|
|
USER superset
|