Docker Hypriot Nodejs Error Building
You might be getting the following error whilst doing a docker build
:
node: /usr/lib/arm-linux-gnueabihf/libstdc++.so.6: version `GLIBCXX_3.4.18' not found (required by node)
The solution is to install some dependencies:
sudo apt-get install gcc-4.8 g++-4.8
Update your Dockerfile:
RUN apt-get update && apt-get install -y gcc-4.8 g++-4.8