From 62ec5427da3cfebfb37a1377aae4e56f1669ff86 Mon Sep 17 00:00:00 2001 From: Ryderjj89 Date: Wed, 1 Oct 2025 18:29:01 -0400 Subject: [PATCH] Add build-base to Dockerfile for native module compilation --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f3bc03a..4b19623 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:24-alpine -# Install dumb-init and Python for native builds -RUN apk add --no-cache dumb-init python3 +# Install dumb-init, Python, and build tools for native builds +RUN apk add --no-cache dumb-init python3 build-base # Set working directory WORKDIR /app