如何在最新节点 docker 映像上将 npm 升级到 npm@5?

How to upgrade npm to npm@5 on the latest node docker image?

在本地,我已经通过以下方式成功安装了 npm@5:

$ npm install npm@5 -g
$ npm -v
$ 5.0.0

在本地,我可以 运行 npm 设置(基本上是 npm i && tsc

$ npm run setup 
updated 102 packages in 3.499s

但现在我还有一个基于 node:7.10-alpine 图像的 Dockerfile,如果我尝试在那里安装 npm@5,它就会中断。

我的 Dockerfile 如下所示:

FROM node:7.10-alpine
WORKDIR /usr/hive-updater/
ENV LAST_UPDATED=2016-12-08 NPM_CONFIG_LOGLEVEL=warn TERM=xterm PATH="$PATH:/usr/hive-updater/node_modules/.bin"
RUN npm install npm@5 -g && npm -v
COPY ./ ./
RUN npm run setup
CMD ["node"]

这将在 npm -v 期间失败:

module.js:472
    throw err;
    ^

Error: Cannot find module 'semver'
    at Function.Module._resolveFilename (module.js:470:15)
    at Function.Module._load (module.js:418:25)
    at Module.require (module.js:498:17)
    at require (internal/module.js:20:19)
    at Object.<anonymous> (/usr/local/lib/node_modules/npm/lib/utils/unsupported.js:2:14)
    at Module._compile (module.js:571:32)
    at Object.Module._extensions..js (module.js:580:10)
    at Module.load (module.js:488:32)
    at tryModuleLoad (module.js:447:12)
    at Function.Module._load (module.js:439:3)

如何在我的 docker 容器上获取​​最新的 npm?

我发现 node's alpine image ships with yarn

Yarn 是 Facebook 的 npm 替代品,您可以使用它来全局安装 npm@5:

RUN npm -v
RUN yarn global add npm@5
RUN npm -v
COPY ./ ./
RUN npm run setup

(版本调用是多余的,只是为了强调升级有效。)

现在可以使用了:

Step 4/9 : RUN npm -v
 ---> Running in dca435fbec59
4.2.0
 ---> f6635e6c92a3
Removing intermediate container dca435fbec59
Step 5/9 : RUN yarn global add npm@5
 ---> Running in fac7216ccd91
yarn global v0.24.4
[1/4] Resolving packages...
[2/4] Fetching packages...
[3/4] Linking dependencies...
[4/4] Building fresh packages...
success Installed "npm@5.0.0" with binaries:
      - npm
Done in 10.47s.
 ---> b6b2e0f3fc36
Removing intermediate container fac7216ccd91
Step 6/9 : RUN npm -v
 ---> Running in 38a9ee95b9f0
5.0.0
 ---> d1632fc97b7e
Removing intermediate container 38a9ee95b9f0
Step 7/9 : COPY ./ ./
 ---> b9b62f53ca48
Removing intermediate container e9dd065c022f
Step 8/9 : RUN npm run setup
 ---> Running in aec36af706d4

> hive-updater@1.0.0 setup /usr/hive-updater
> npm install --quiet && npm run build

added 102 packages in 5.156s

> hive-updater@1.0.0 build /usr/hive-updater
> tsc

因此,如果您的 npm 版本低于版本 5,并且它的升级方法对您不利,请安装 yarn 来升级 npm ¯\_(ツ)_/¯


旁注:

最好只使用 yarn 而不是 npm@5。还是有很强的性能优势。

比较这些运行,都缓存:

yarn install v0.24.5
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.31s.

使用 npm@5:

npm install
updated 102 packages in 3.069s

我不知道 yarn 已经随 alpine 图像一起提供了。