CodeBuildでStandard2.0のイメージを使用したらエラー出たときの対処
AWS CodeBuildでデフォルト提供されるイメージがいつからかstandardというのになってて
1.0と2.0が選択できるようになっていた。
2.0を選択して、
よくあるフォーマットの buildspec.yml
を実行すると
YAML_FILE_ERROR Message: This build image requires selecting at least one runtime version.
というエラーが発生した。
公式のトラブルシューティングに記載がある ように、aws/codebuild/standard:2.0
を使用するときは runtime-versions
を指定する必要があるよう。
たとえばDockerの場合は以下のように指定する
phases:
install:
runtime-versions:
docker: 18
対応しているランタイムはこちら に記載がある。
以下スクショ
Author And Source
この問題について(CodeBuildでStandard2.0のイメージを使用したらエラー出たときの対処), 我々は、より多くの情報をここで見つけました https://qiita.com/maruware/items/c3a6f6741220ef3e61f7著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .