如何在 Dockerfile 中使用 yarn 包管理器安装 Node.js

How to install Node.js with yarn package manager in Dockerfile

我想在我的 Dockerfile 中安装 Node.js 和 yarn.pkg。
Dockerfile 用于 Laravel8/PHP8 项目。

这是我的实际尝试:

RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
    && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list
RUN apt-get update -y \
    && apt-get install -y --no-install-recommends \
        nodejs \
        yarn \
        mysql-client

如果我这样尝试,我会在 shell:

上得到这个输出
 => CACHED [ 8/20] RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -                                                                                                                                                                                      0.0s
 => ERROR [ 9/20] RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -                                                                                                                                                                             0.4s
------
 > [ 9/20] RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -:
#12 0.331 Warning: apt-key output should not be parsed (stdout is not a terminal)
#12 0.384 gpg: Segmentation fault
#12 0.384 no valid OpenPGP data found.
------
failed to solve: rpc error: code = Unknown desc = executor failed running [/bin/sh -c curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -]: exit code: 2

有没有办法解决这个问题?
如果您需要更多相关信息,请告诉我。

此致,
曼尼

嗯... NPM(节点包管理器)与 Node.js 一起安装,Yarn 只是一个模块,与 npm install -g yarn[= 一样安装18=]

只需编辑和使用 喜欢的内容:

ENV NODE_VERSION=12.6.0
RUN apt install -y curl
ENV NVM_DIR=/root/.nvm
RUN curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
RUN . "$NVM_DIR/nvm.sh" && nvm install ${NODE_VERSION}
RUN . "$NVM_DIR/nvm.sh" && nvm use v${NODE_VERSION}
RUN . "$NVM_DIR/nvm.sh" && nvm alias default v${NODE_VERSION}
ENV PATH="/root/.nvm/versions/node/v${NODE_VERSION}/bin/:${PATH}"
RUN node --version
RUN npm --version

RUN npm install -g yarn

Note that this is the best way I know to manage Node's version.

Top-Master,非常感谢您的投入。它对我找到解决方案有很大帮助。

这里是...
我使用了您在上面发布的 Dockerfile 并做了一些小改动:

ENV NODE_VERSION=16.5
ENV NVM_DIR=/root/.nvm
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
RUN . "$NVM_DIR/nvm.sh" \
    && nvm install ${NODE_VERSION}
RUN . "$NVM_DIR/nvm.sh" \
    && nvm use v${NODE_VERSION}
RUN . "$NVM_DIR/nvm.sh" \
    && nvm alias default v${NODE_VERSION}
ENV PATH="/root/.nvm/versions/node/v${NODE_VERSION}/bin/:${PATH}"

RUN npm install -g yarn

问题是,RUN npm install -g yarn 命令 运行 出错,构建失败。经过一番谷歌搜索后,我找到了这个网页 https://docs.npmjs.com/downloading-and-installing-node-js-and-npm.
他们建议,由于目录结构和用户权限,npm 应该单独安装。如果将 npm 与 Node.js 一起安装,它们是不一样的。

所以我这样做了:

ENV NODE_VERSION=16.5
ENV NVM_DIR=/root/.nvm
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
RUN . "$NVM_DIR/nvm.sh" \
    && nvm install ${NODE_VERSION}
RUN . "$NVM_DIR/nvm.sh" \
    && nvm use v${NODE_VERSION}
RUN . "$NVM_DIR/nvm.sh" \
    && nvm alias default v${NODE_VERSION}
ENV PATH="/root/.nvm/versions/node/v${NODE_VERSION}/bin/:${PATH}"
RUN apt-get update \
    && apt-get install -y --no-install-recommends \
        npm
RUN npm install -g yarn

对我来说(我也希望对很多其他人来说)它现在有效:)

再次感谢!
玩得开心!