fix(api): Dockerfile explícito para dist+node_modules; quitar image: para forzar build en Coolify

This commit is contained in:
Lizandro Guarnizo
2026-06-18 23:11:01 -05:00
parent 6aa6897f4d
commit 0ec04560d4
2 changed files with 5 additions and 4 deletions
+5 -2
View File
@@ -8,14 +8,17 @@ COPY . .
RUN pnpm install --frozen-lockfile 2>/dev/null || pnpm install --no-frozen-lockfile --force
RUN pnpm --filter @moraworld/database exec prisma generate && pnpm --filter @moraworld/database build
RUN pnpm --filter @moraworld/api build
# pnpm deploy crea un dir autocontenido sin symlinks al store virtual
# pnpm deploy resuelve node_modules sin symlinks del store virtual
RUN pnpm --filter @moraworld/api deploy --prod /app/deploy
FROM node:22-alpine AS runner
WORKDIR /app
ENV NODE_ENV=production
RUN addgroup -S app && adduser -S app app
COPY --from=builder /app/deploy ./
# node_modules de pnpm deploy (sin symlinks rotos) + dist del build explícito
COPY --from=builder /app/deploy/node_modules ./node_modules
COPY --from=builder /app/apps/api/dist ./dist
COPY --from=builder /app/apps/api/package.json ./
COPY --from=builder /app/packages/database ./packages/database
USER app
EXPOSE 3001