From 92ffa9219c9e1a93e6968716b7a656bee4fd8efc Mon Sep 17 00:00:00 2001 From: Daniel Pupius Date: Mon, 16 Mar 2026 03:31:10 +0000 Subject: [PATCH] Switch web builder to node:20-bookworm-slim Alpine (musl) + esbuild's Go binary crashes with lfstack.push on high-entropy ASLR kernels. Debian (glibc) uses a different memory allocator that avoids the issue. Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5c0b3d8..3e26704 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ ############################################################################### # Stage 1: Build the web application ############################################################################### -FROM node:20-alpine AS web-builder +FROM node:20-bookworm-slim AS web-builder WORKDIR /app/web