如何在 Codebuild 中使用自定义 docker 图像 node:16.13.0-alpine
How to use custom docker image node:16.13.0-alpine in Codebuild
夏天
我尝试在 Codebuild 中使用 docker 容器 node:16.13.0-alpine
。
但是,构建失败并出现以下错误。
BUILD_CONTAINER_UNABLE_TO_PULL_IMAGE: Unable to pull customer's container image.
Asm fetching username: AuthorizationData is malformed, empty field
我想知道如何解决这个错误并成功构建通过。
我试过的
我设置的环境如下:
在 Registry credentials
部分,我为 Docekr 凭证添加了 Secrets Manager ARN。
代码
这里buildspec.yml
进行测试。
version: 0.2
phases:
build:
commands:
- echo this is test.
我的注册表 URL 错误。
node:14.16.0-stretch
成功。
夏天
我尝试在 Codebuild 中使用 docker 容器 node:16.13.0-alpine
。
但是,构建失败并出现以下错误。
BUILD_CONTAINER_UNABLE_TO_PULL_IMAGE: Unable to pull customer's container image.
Asm fetching username: AuthorizationData is malformed, empty field
我想知道如何解决这个错误并成功构建通过。
我试过的
我设置的环境如下:
Registry credentials
部分,我为 Docekr 凭证添加了 Secrets Manager ARN。
代码
这里buildspec.yml
进行测试。
version: 0.2
phases:
build:
commands:
- echo this is test.
我的注册表 URL 错误。
node:14.16.0-stretch
成功。