save
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-04-19 22:56:59 +01:00
parent 532f7611a6
commit 8b756e5e50
+3 -2
View File
@@ -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