diff --git a/dockerfile b/dockerfile index a726f73..d99a834 100644 --- a/dockerfile +++ b/dockerfile @@ -2,8 +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 +# 1. Install system dependencies +# Added 'libcrypto3' and 'libssl3' which Prisma often needs on newer Alpine +RUN apk add --no-cache openssl libc6-compat libcrypto3 libssl3 # Enable pnpm RUN corepack enable && corepack prepare pnpm@latest --activate