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