fix: we need git in docker

This commit is contained in:
Aarnav Tale 2024-12-05 11:35:41 -05:00
parent 21778a43f1
commit 1af292a5b0
No known key found for this signature in database

View File

@ -2,6 +2,7 @@ FROM node:20-alpine AS build
WORKDIR /app WORKDIR /app
RUN npm install -g pnpm RUN npm install -g pnpm
RUN apk add --no-cache git
COPY package.json pnpm-lock.yaml ./ COPY package.json pnpm-lock.yaml ./
COPY patches ./patches COPY patches ./patches
RUN pnpm install --frozen-lockfile RUN pnpm install --frozen-lockfile