We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46c3345 commit 951013bCopy full SHA for 951013b
Dockerfile
@@ -6,9 +6,10 @@ RUN npm install -g pnpm
6
# Set working directory
7
WORKDIR /usr/src/app
8
9
-# Copy only manifest and lockfile first for better caching
10
-COPY package.json pnpm-lock.yaml ./
11
+# Copy only manifest, lockfile, and prisma schema for better caching
+COPY package.json pnpm-lock.yaml ./
12
+COPY prisma ./prisma
13
14
# Install all dependencies (including devDependencies for build)
15
RUN pnpm install
0 commit comments