From d3cab7539e3019c8717603a03c1674260172052d Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Tue, 9 Jun 2026 20:58:40 -0500 Subject: [PATCH] =?UTF-8?q?ci:=20debug=20web=20=E2=80=94=20ls=20schema,=20?= =?UTF-8?q?which=20prisma,=20prisma=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 991afc2..cd48aaa 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -15,8 +15,11 @@ COPY --from=deps /app/node_modules ./node_modules COPY . . ARG NEXT_PUBLIC_API_URL=http://localhost:3001 ENV NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL -RUN prisma generate --schema=packages/database/prisma/schema.prisma && \ - pnpm --filter @moraworld/web build +RUN ls -la packages/database/prisma/schema.prisma +RUN which prisma +RUN prisma --version +RUN prisma generate --schema=packages/database/prisma/schema.prisma +RUN pnpm --filter @moraworld/web build FROM node:22-alpine AS runner WORKDIR /app