metabase init

This commit is contained in:
2025-09-20 10:12:29 +02:00
parent 04d2c5f8a9
commit dbe7557ede
2 changed files with 227 additions and 0 deletions

12
metabase/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.13-slim
# Installer requests une seule fois dans l'image
RUN python3 -m pip install --no-cache-dir requests
WORKDIR /app
# Copier le script Python
COPY init_metabase.py /app/
# Lancer le script par défaut
ENTRYPOINT ["python3", "init_metabase.py"]