13 lines
267 B
Docker
13 lines
267 B
Docker
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"]
|