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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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* .