fix: Agregar git al Dockerfile para dependencias npm
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 8m19s
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 8m19s
This commit is contained in:
@@ -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 ./
|
||||
|
||||
Reference in New Issue
Block a user