diff --git a/dockerfile b/dockerfile index f10c6e6..a726f73 100644 --- a/dockerfile +++ b/dockerfile @@ -2,6 +2,9 @@ FROM node:22-alpine WORKDIR /app +# Install openssl and libc6-compat (Required for Prisma on Alpine) +RUN apk add --no-cache openssl libc6-compat + # Enable pnpm RUN corepack enable && corepack prepare pnpm@latest --activate