diff --git a/Dockerfile b/Dockerfile index 3493107..72a4350 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ # ── Stage 1: deps ───────────────────────────────────────────────────────────── FROM node:24-alpine3.21 AS deps WORKDIR /app +RUN apk add --no-cache python3 make g++ COPY package.json package-lock.json ./ RUN npm ci