fix: correct EXPOSE port to 3001 to match app runtime port

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Lizandro Guarnizo
2026-06-17 08:54:20 -05:00
co-authored by Claude Sonnet 4.6
parent ac7fe193cd
commit 34ee7be531
+1 -1
View File
@@ -12,5 +12,5 @@ COPY --from=builder /app/dist ./dist
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package.json ./
COPY --from=builder /app/prisma ./prisma
EXPOSE 3000
EXPOSE 3001
CMD ["node", "dist/main.js"]