无法安装节点7.5.0

时间:2017-02-15 05:59:32

标签: node.js curl docker

我正在尝试在docker容器中安装nodejs

使用curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -

根据nodejs.org

上的说明

但似乎总是安装v 0.10.29

欢迎任何有关此

的帮助

1 个答案:

答案 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