fix(ci): add git install to Dockerfile (#2443)

Co-authored-by: Leo Schultheiß <leo.schultheiss@fau.de>
This commit is contained in:
Leo Schultheiss
2026-06-16 02:21:46 +02:00
committed by GitHub
parent e12ca11100
commit e54b89f889
+4
View File
@@ -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* .