From b5dbd5a404650f6e3e4c09cf774397e8a202316a Mon Sep 17 00:00:00 2001 From: Emmo00 Date: Tue, 11 Nov 2025 18:24:05 +0100 Subject: [PATCH] fix: update Dockerfile to include missing build tools for project compilation --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index be5befa..35bd95d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,10 @@ FROM node:20-alpine # Create working directory WORKDIR /opt/app -RUN apk add --no-cache cmake python3 openssl-dev py3-setuptools +RUN apk add --no-cache cmake make g++ python3 openssl-dev py3-setuptools + +# Optional: clean old node_modules if re-building +RUN rm -rf node_modules package-lock.json # Copy and install dependencies COPY package.json .