我正在尝试在docker容器中安装nodejs
使用curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
根据nodejs.org
上的说明但似乎总是安装v 0.10.29
欢迎任何有关此
的帮助答案 0 :(得分:0)
或者您可以在DockerHub
上使用预构建的节点Docker镜像RUN apt-get update
RUN apt-get install -y curl nodejs
RUN curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash