feat(prefect-worker): add git for cloning flow repositories
All checks were successful
Build and Push Docker Images / build (push) Successful in 15s

Git is required by Prefect workers to pull flow code from remote
repositories before execution.
This commit is contained in:
2026-01-31 18:01:36 +00:00
parent 0e18a445b4
commit d6afb6b062

View File

@@ -11,9 +11,12 @@ LABEL maintainer="Damien Arnodo"
LABEL org.opencontainers.image.title="Prefect Worker - PostgreSQL Backup"
LABEL org.opencontainers.image.description="Prefect worker with PostgreSQL and S3 tools for database backups"
# Installation des outils PostgreSQL (pg_dump, pg_restore, etc.)
# Installation des outils système
# - postgresql-client : pg_dump, pg_restore, psql
# - git : nécessaire pour cloner les repositories contenant le code des flows
RUN apt-get update && apt-get install -y --no-install-recommends \
postgresql-client \
git \
&& rm -rf /var/lib/apt/lists/*
# Installation des dépendances Python pour S3 et PostgreSQL