According to node documentation, since Node.js 25 it needs libatomic to work.
When running frontend-maven-plugin in an official maven image like maven:3-eclipse-temurin-25 for example, it does not have this dependent package installed. So I am getting this output :
[INFO] --- frontend:2.0.0:npm (npm install) @ project ---
[INFO] Running 'npm install' in /builds
[INFO] /builds/node/node: error while loading shared libraries: libatomic.so.1: cannot open shared object file: No such file or directory
Would there be a way on the maven plugin side to ensure this package is installed or to download/install it in order to get node>=25 working ?
According to node documentation, since Node.js 25 it needs
libatomicto work.When running
frontend-maven-pluginin an official maven image likemaven:3-eclipse-temurin-25for example, it does not have this dependent package installed. So I am getting this output :Would there be a way on the maven plugin side to ensure this package is installed or to download/install it in order to get node>=25 working ?