From 8b756e5e50e8a890503d903201d19f431bae8e2f Mon Sep 17 00:00:00 2001 From: Peter Maquiran Date: Sun, 19 Apr 2026 22:56:59 +0100 Subject: [PATCH] save --- dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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