From 86a23785daeb499870f289a5b38c0e87c1f4d90e Mon Sep 17 00:00:00 2001 From: Erik Date: Wed, 26 Nov 2025 14:28:14 -0300 Subject: [PATCH] Adicionar OpenSSL para compatibilidade com Prisma no Alpine --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7277d61..8aa1740 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,6 +30,9 @@ WORKDIR /app ENV NODE_ENV=production ENV NEXT_TELEMETRY_DISABLED=1 +# Install OpenSSL for Prisma +RUN apk add --no-cache openssl1.1-compat + RUN addgroup --system --gid 1001 nodejs RUN adduser --system --uid 1001 nextjs