fix: Agregar git al Dockerfile para dependencias npm
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 8m19s

This commit is contained in:
2025-12-02 18:08:56 -06:00
parent e0f844e5dc
commit d1c3e1cf41

View File

@@ -3,8 +3,8 @@ FROM node:22-alpine AS builder
WORKDIR /app
# Install build dependencies
RUN apk add --no-cache python3 make g++
# Install build dependencies (git required for some npm packages)
RUN apk add --no-cache python3 make g++ git
# Copy package files
COPY package*.json ./