microsoft / napajs

Napa.js: a multi-threaded JavaScript runtime

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by /var/frontend/node_modules/napajs/bin/napa-binding.node)

dmitrif opened this issue · comments

Within a docker container with the following Dockerfile inclusion, pre-built NapaJS still fails to initialize properly.

RUN apt-get update
RUN apt-get install -y software-properties-common
RUN add-apt-repository ppa:ubuntu-toolchain-r/test
RUN apt-get upgrade -y
RUN apt-get dist-upgrade
RUN apt-get install -y curl build-essential supervisor wget libstdc++6

Fixed with:

RUN apt-get update
RUN apt-get install -y software-properties-common
RUN add-apt-repository ppa:ubuntu-toolchain-r/test
RUN apt-get update
RUN apt-get install -y curl build-essential supervisor wget libstdc++6
RUN apt-get upgrade -y
RUN apt-get dist-upgrade

Thanks for your feedback, @dmitrif. Your sharing will definitely help others