使用 SSH 密钥从 docker 内部的私有存储库安装 npm 模块

使用 SSH 密钥从 docker 内部的私有存储库安装 npm 模块

我为 nodejs 项目创建容器。在项目内部,我使用私有存储库。我需要访问它。为此,我使用下一个 Dockerfile

FROM node:15

RUN echo "StrictHostKeyChecking no" >> /etc/ssh/ssh_config
RUN mkdir -p -m 0600 ~/.ssh && ssh-keyscan bitbucket.org >> ~/.ssh/known_hosts
COPY keys/ssh_config /root/.ssh/config
COPY keys/bitbucket /root/.ssh/bitbucket
RUN chmod 600 /root/.ssh/bitbucket

RUN npm install -g typescript ts-node
WORKDIR /var/www
EXPOSE 3000

ssh_config 文件是

Host bitbucket.org
     IdentityFile /root/.ssh/bitbucket
     StrictHostKeyChecking no

在我的 package.json 中我添加了下一行

"my-interfaces": "git+ssh://bitbucket.org:MY_USER_NAME/my-interfaces.git#master",

使用 docker-compose 构建容器后,我登录容器内部并运行, npm i 但最后看到下一个错误

npm ERR! code 128
npm ERR! command failed
npm ERR! command git ls-remote ssh://[email protected]/MY_USER_NAME/my-interfaces.git
npm ERR! Permission denied (publickey).
npm ERR! fatal: Could not read from remote repository.
npm ERR! 
npm ERR! Please make sure you have the correct access rights
npm ERR! and the repository exists.

npm ERR! A complete log of this run can be found in:
npm ERR!     /root/.npm/_logs/2021-04-30T08_19_38_999Z-debug.log

我尝试了另一种方法,我在容器内生成 SSH 密钥并将公钥添加到 bitbucket,但我看到相同的错误消息。它在 Ubuntu Linux 上重现,但相同的配置在 MacOS 上运行良好。

更新 我可以通过命令从 git 克隆这个存储库git clone ...

相关内容