From 73a81a8563054e8642fd1b4b764c08f8bda446e9 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Sat, 17 Jan 2026 15:17:41 +0000 Subject: [PATCH] Generated by Spark: Stop using Alpine for the build stage (use glibc) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b96e3b5..ee2b539 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20-alpine AS builder +FROM node:20-slim AS builder WORKDIR /app @@ -12,7 +12,7 @@ COPY packages/spark-tools ./packages/spark-tools COPY packages/spark ./packages/spark # Install dependencies with npm ci for consistent, reproducible builds -# Include optional dependencies to ensure platform-specific binaries (like @rollup/rollup-linux-arm64-musl) are installed +# Include optional dependencies to ensure platform-specific binaries are installed RUN npm ci --include=optional # Copy remaining application files