CodeBuild에서 Standard2.0 이미지를 사용할 때 오류가 발생했을 때의 조치

1472 단어 CodeBuild
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

해당 런타임은 여기에 설명되어 있습니다.

이하 스쿠쇼

좋은 웹페이지 즐겨찾기