Skip to content

Commit 2697776

Browse files
committed
fix: Use correct NestJS output directory (dist_user)
- NestJS is configured to build to dist_user in nest-cli.json - Copy from /app/dist_user instead of /app/dist
1 parent 8b43bb1 commit 2697776

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ COPY --from=backend-deps --chown=nodejs:nodejs /app/prisma ./prisma
120120

121121
# Copy backend package files and built source
122122
COPY --chown=nodejs:nodejs backend/package*.json ./
123-
COPY --from=backend-deps --chown=nodejs:nodejs /app/dist ./dist
123+
COPY --from=backend-deps --chown=nodejs:nodejs /app/dist_user ./dist
124124
COPY --chown=nodejs:nodejs backend/src ./src
125125

126126
# Copy Next.js standalone build

0 commit comments

Comments
 (0)