fix: install git in backend Docker build stage
Build and Push Multi-Platform Images / build-and-push (push) Successful in 33s

Required for npm packages that reference git dependencies.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-21 21:41:10 +02:00
parent 2aba9ff004
commit 23a889f3a5
+1
View File
@@ -1,5 +1,6 @@
# Backend # Backend
FROM node:20-alpine AS builder FROM node:20-alpine AS builder
RUN apk add --no-cache git
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN npm ci RUN npm ci