From 4ee87f1a26ea3dabf02761220ba80fca003a027a Mon Sep 17 00:00:00 2001 From: urieljareth Date: Wed, 10 Jun 2026 02:26:43 -0600 Subject: [PATCH] Instalar openssl en la imagen runner (warning de Prisma CLI) Co-Authored-By: Claude Fable 5 --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index ae29fdc..84a97f6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,6 +25,10 @@ FROM base AS runner ENV NODE_ENV=production ENV PORT=3000 +# openssl: el CLI de Prisma lo necesita para detectar la versión de libssl +RUN apt-get update -y && apt-get install -y --no-install-recommends openssl \ + && rm -rf /var/lib/apt/lists/* + COPY --from=builder /app/node_modules ./node_modules COPY --from=builder /app/.next ./.next COPY --from=builder /app/public ./public