From 564b8f2891f4f2f101caaa156fa8cecad399a48c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 7 Dec 2025 18:28:11 +0000 Subject: [PATCH] Add git package to Dockerfile base stage Git is required by composer when installing packages from source. This dependency was exposed by the multi-stage build changes where composer-deps stage uses --no-scripts and the final stage needs to complete the installation. Co-authored-by: jbtronics <5410681+jbtronics@users.noreply.github.com> --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 3f4b5783..c2a0e8ae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,6 +67,7 @@ RUN apt-get update && apt-get -y install \ php${PHP_VERSION}-sqlite3 \ php${PHP_VERSION}-mysql \ php${PHP_VERSION}-pgsql \ + git \ gpg \ sudo \ && apt-get -y autoremove && apt-get clean autoclean && rm -rf /var/lib/apt/lists/* \