feat: add initial

This commit is contained in:
node_data
2025-02-01 14:33:43 +00:00
commit 1b3f6693ac
24 changed files with 1170 additions and 0 deletions

16
docker/Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM apache/superset:4.1.1
USER root
RUN mkdir -p /app/pythonpath
RUN apt-get update && apt-get install -y libpq-dev gcc && \
pip install psycopg2 clickhouse-connect
# Copy the entrypoint script into the container
COPY superset_config.py /app/pythonpath/
COPY init_superset.sh /usr/bin/init_superset.sh
# Make sure the script is executable
RUN chmod +x /usr/bin/init_superset.sh