From ff05d25effe08b51659aca632771779864474c25 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 17:09:46 +0000 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 617bed9..bc738f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,9 +5,10 @@ FROM node:22-alpine # Install build dependencies for native modules (sharp, etc.) +# bash: Required for build scripts that use bash # libc6-compat: Required for sharp on Alpine # python3 make g++: Required for node-gyp builds -RUN apk add --no-cache libc6-compat python3 make g++ +RUN apk add --no-cache bash libc6-compat python3 make g++ WORKDIR /app