Starting with `2.3.0-Beta2`, when building my proj...
# webassembly
r
Starting with
2.3.0-Beta2
, when building my project inside docker using
gradle:9.1.0-jdk21
image I have this error:
kotlinWasmNpmInstallnode: error while loading shared libraries: libatomic.so.1: cannot open shared object file: No such file or directory
. What could be wrong?
Do I understand correctly wasm is using Node 25 now (https://youtrack.jetbrains.com/issue/KT-81315) and it just doesn't work on my selected image?
Fixed the problem by adding
RUN apt-get update && apt-get -y install libatomic1
to my dockerfile.