From e54b89f88906c2fbdae7a80d5524719c8be096bd Mon Sep 17 00:00:00 2001 From: Leo Schultheiss Date: Tue, 16 Jun 2026 02:21:46 +0200 Subject: [PATCH] fix(ci): add git install to Dockerfile (#2443) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Leo Schultheiß --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index e6c0a21e2..cb2a88965 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,8 @@ FROM node:22-slim AS builder + +# install git to install plugins +RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* + WORKDIR /usr/src/app COPY package.json . COPY package-lock.json* .