Add build-base to Dockerfile for native module compilation

This commit is contained in:
Ryderjj89
2025-10-01 18:29:01 -04:00
parent f3b612896a
commit 62ec5427da

View File

@@ -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