diff --git a/services/our/Dockerfile b/services/our/Dockerfile index 0f0dcf7..c6e4634 100644 --- a/services/our/Dockerfile +++ b/services/our/Dockerfile @@ -20,6 +20,10 @@ RUN apt-get update -y && \ COPY package.json package-lock.json ./ RUN npm install --ignore-scripts=false --foreground-scripts --verbose +# Copy Prisma schema and generate client +COPY prisma ./prisma +RUN npx prisma generate + # Copy the rest of the code COPY . .