feat: redesign AI test page with Ethereal Precision v2 (horizontal layout, ultra-wide) and fix Dockerfile OpenSSL issue
All checks were successful
Deploy to Production / Build and Deploy (push) Successful in 58s

This commit is contained in:
Antigravity
2026-05-03 13:09:04 +00:00
parent b611ec874d
commit aee4b17306
10 changed files with 751 additions and 226 deletions

View File

@@ -20,6 +20,10 @@ RUN npx prisma generate
FROM node:22-bookworm-slim AS builder
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
openssl \
&& rm -rf /var/lib/apt/lists/*
COPY --from=deps /app/node_modules ./node_modules
COPY . .