From e4e6e72f44a2ebc1c95f6077b1d97149c66f4dc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20D=C3=BCren?= Date: Mon, 29 Dec 2025 17:16:59 -0600 Subject: [PATCH] Regenerate Prisma client for runtime OpenSSL version --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index ec11cf1..1be8a55 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,6 +41,9 @@ RUN cp -r /tmp/blinko/dist /app/code/dist && \ # Copy public assets if they exist RUN if [ -d /tmp/blinko/public ]; then cp -r /tmp/blinko/public /app/code/public; fi +# Regenerate Prisma client for the runtime environment (cloudron base uses OpenSSL 3.0) +RUN cd /app/code && npx prisma generate --schema=/app/code/prisma/schema.prisma + # Set up initial data directory template RUN mkdir -p /tmp/data/.blinko