From f14e6f5e27efdb6626f5e423272548685741e7be Mon Sep 17 00:00:00 2001 From: knight Date: Sat, 17 May 2025 16:11:17 -0400 Subject: [PATCH] chore: add native build dependencies (python3, make, g++) to Docker image --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index cb638e8..db7b73f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,9 @@ WORKDIR /usr/src/app # Copy package.json and package-lock.json to the working directory COPY package*.json ./ +# Install build dependencies for native modules +RUN apk add --no-cache python3 make g++ + # Install any needed packages specified in package.json RUN npm install