diff --git a/Dockerfile b/Dockerfile index 9ccf6e9..815af68 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:20-alpine AS client-build WORKDIR /app/client COPY client/package*.json ./ -RUN npm ci +RUN npm install COPY client/ ./ RUN npm run build @@ -10,7 +10,7 @@ RUN npm run build FROM node:20-alpine AS server-build WORKDIR /app/server COPY server/package*.json ./ -RUN npm ci +RUN npm install COPY server/ ./ RUN npx prisma generate RUN npm run build