From 42f40889f620ce9645e644d89273fdc8509c63a0 Mon Sep 17 00:00:00 2001 From: Steven Noack <147175134+MacStenk@users.noreply.github.com> Date: Thu, 11 Dec 2025 07:25:19 +0100 Subject: [PATCH] Add bcrypt rebuild step in Dockerfile Rebuild bcrypt for Alpine compatibility. --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 4226fd8..a383183 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,9 @@ COPY package.json pnpm-lock.yaml ./ # Install dependencies (rebuild native modules) RUN pnpm install --force +# Rebuild bcrypt for Alpine +RUN pnpm rebuild bcrypt + # Copy source COPY . .