From 1af292a5b03bcfd2cee936499346e98853b234ef Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Thu, 5 Dec 2024 11:35:41 -0500 Subject: [PATCH] fix: we need git in docker --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index fa3521a..4dbe3fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM node:20-alpine AS build WORKDIR /app RUN npm install -g pnpm +RUN apk add --no-cache git COPY package.json pnpm-lock.yaml ./ COPY patches ./patches RUN pnpm install --frozen-lockfile