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