From 5cf4ccd1a11eeec7b128ccc8f14bbb3190f41475 Mon Sep 17 00:00:00 2001 From: Ravindra Mohith P Date: Wed, 7 Aug 2024 20:03:51 +0530 Subject: [PATCH] build & deploy to AWS --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c5aaa77..ca731ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:22-alpine3.19 as builder WORKDIR /app COPY package*.json ./ COPY prisma ./ -RUN npm i -D prisma +RUN npm i -D prisma@5.1.1 RUN npx prisma generate RUN npm install --legacy-peer-deps COPY . .